/* Product Single */
.easystore-product-single .easystore-product-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
}

.easystore-product-single .easystore-btn-add-to-cart {
	margin-bottom: 8px;
}

.easystore-product-single .easystore-product-variants {
	gap: 32px;
}

/* Inventory */
.easystore-product-inventory {
	display: flex;
	align-items: center;
	gap: 8px;
}

.easystore-product-inventory-icon {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background-color: #54c63a;
}

.easystore-product-inventory-icon:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: #54c63a;
	border-radius: 100%;
	animation: easystore-inventory-pulse 2s linear infinite;
}

.easystore-product-inventory-icon.easystore-no-stock,
.easystore-product-inventory-icon.easystore-no-stock:before {
	background: #d9534f;
}

@keyframes easystore-inventory-pulse {
	0% {
		opacity: 0.5;
	}

	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

/* Social Share */
.easystore-social-share {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 16px;
}

.easystore-social-share > li a {
	text-decoration: none;
	outline: none;
	align-items: center;
	justify-content: center;
	display: inline-flex;
}

/* Product Single (continued) */
.easystore-product-single .easystore-btn-add-to-cart,
.easystore-product-single .easystore-btn-add-to-wishlist {
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 12px 24px;
}

.easystore-product-single .easystore-product-title,
.easystore-product-single .easystore-product-category,
.easystore-product-single .easystore-variant-title.easystore-block-label {
	margin-bottom: 16px;
}

.easystore-product-single .easystore-ratings-container,
.easystore-product-single .easystore-product-inventory {
	margin-bottom: 20px;
}

.easystore-product-single .easystore-btn-add-to-wishlist,
.easystore-product-single .easystore-product-price,
.easystore-product-single .easystore-quantity-container,
.easystore-product-single .easystore-product-variants,
.easystore-product-single .easystore-social-share-container {
	margin-bottom: 32px;
}

/* Thumbnail */
.easystore-product-image {
	position: relative;
	overflow: hidden;
	padding-bottom: 125%;
}
.easystore-product-video {
	position: relative;
	overflow: hidden;
	padding-bottom: 50%;
}

.easystore-zoom-cursor {
	cursor: zoom-in;
}

.easystore-product-image img {
	display: block;
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
	object-fit: cover;
	object-position: center center;
	transition: opacity 200ms ease;
}

.easystore-product-single .easystore-product-image {
	margin-bottom: 8px;
}

/* Gallery */
.easystore-product-gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

:is(.easystore-gallery-video, .easystore-video-thumbnail) svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 56px;
	max-height: 56px;
}

.easystore-product-gallery > .easystore-gallery-image {
	text-align: inherit;
	border: 1px solid transparent;
	overflow: hidden;
}

.easystore-product-gallery > .easystore-gallery-image.active {
	border-color: var(--easystore-primary-color);
}

/* Reviews */
.easystore-summary-value,
.easystore-summary-content,
.easystore-review-item .easystore-review-title {
	font-weight: 600;
}

.easystore-summary-total,
.easystore-review-item .easystore-review-user {
	font-weight: 400;
}

.easystore-summary-count,
.easystore-reviews {
	display: flex;
}

.easystore-summary-stars,
.easystore-summary-count,
.easystore-review-item .easystore-review-ratings,
.easystore-review-item .easystore-review-user {
	margin-bottom: 16px;
}

.easystore-review-validation-error {
	display: flex;
	flex-direction: row-reverse;
}

.easystore-review-container {
	border-top: 1px solid var(--easystore-border-color);
	padding-top: 64px;
	margin-top: 64px;
}
.easystore-reviews-summary {
	margin-bottom: 24px;
}

.easystore-summary-count {
	align-items: flex-end;
	gap: 6px;
}

.easystore-summary-value {
	font-size: 32px;
	line-height: 1.2;
}

.easystore-summary-total {
	font-size: 16px;
}

.easystore-summary-stars .easystore-rating-stars {
	font-size: 36px;
}

.easystore-reviews {
	flex-direction: column;
	gap: 64px;
}

.easystore-review-item .easystore-review-title {
	font-size: 18px;
	line-height: 32px;
}

.easystore-review-item .easystore-review-user {
	font-size: 14px;
	line-height: 24px;
	color: var(--easystore-secondary-color);
	margin-bottom: 24px;
}

.easystore-zoom-gallery {
	position: fixed;
	z-index: 1000;
	overflow: hidden;
}

.easystore-zoom-gallery-wrapper {
	position: fixed;
	background-color: #ffffff;
	z-index: 150;
	display: none;
	inset: 50px;
	overflow: hidden;
	box-shadow: 0px 0px 2px rgba(17, 18, 19, 0.2), 0px 30px 72px rgba(17, 18, 19, 0.2);
	border-radius: 6px;
}

.easystore-zoom-gallery-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 0;
	display: none;
}

.easystore-zoom-gallery-preview {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.easystore-zoom-gallery-preview img {
	transition: transform 0.3s ease;
	cursor: zoom-in;
	max-height: 100%;
	min-height: auto;
}

.easystore-zoom-gallery-thumbs {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 20px;
	width: 100%;
	display: flex;
	overflow: auto;
	white-space: nowrap;
	justify-content: center;
}

.easystore-zoom-gallery-thumbs.thumbs-hidden {
	display: none;
}

.easystore-zoom-gallery-thumb {
	background-color: #ffffff;
	border: none;
	outline: none;
	width: 100px;
	height: auto;
	padding: 2px;
	position: relative;
	border: 2px solid transparent;
	transition: border 0.3s ease;
}

.easystore-zoom-gallery-thumb:hover {
	border-color: var(--easystore-primary-color);
}

.easystore-zoom-gallery-thumb.is-active {
	border-color: var(--easystore-primary-color);
}

.easystore-zoom-gallery-controls {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.easystore-zoom-gallery-button {
	background-color: transparent;
	outline: none;
	border: none;
	width: 48px;
	height: 48px;
	pointer-events: auto;
	transition: background 0.3s ease;
}

.easystore-zoom-gallery-button:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.easystore-zoom-gallery-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 40px;
	height: 40px;
}

.easystore-zoom-gallery-prev {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.easystore-zoom-gallery-next {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
}
@media (max-width: 991.98px) {
	.easystore-zoom-gallery-wrapper {
		inset: 20px;
	}
}
@media (max-width: 767.98px) {
	.easystore-zoom-gallery-wrapper {
		inset: 10px;
	}
}

@media (max-width: 575.98px) {
	.easystore-zoom-gallery-wrapper {
		inset: 10px;
	}
}

.easystore-product-thumbnail {
	max-width: 100%;
}
