.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;
}
/* Zoom */
.easystore-product-image-zoom-lens {
	position: absolute;
	border: 2px solid #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	max-width: 600px;
	max-height: 600px;
	pointer-events: none !important;
	cursor: crosshair;
	display: none;
}

.easystore-product-image-zoom-result {
	position: absolute;
	overflow: hidden;
	z-index: 9996;
	border: 1px solid #ddd;
	border: 1px solid #e0e0e0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: none;
	transition: opacity 0.3s ease;
	width: 874.5px;
	height: 800px;
	top: 0;
	left: 0;
}
.easystore-product-image-zoom-result img {
	position: absolute;
	width: auto;
	height: auto;
	will-change: transform;
}
.easystore-product-image-zoom-lens.x-show,
.easystore-product-image-zoom-result.x-show {
	display: block;
}

.easystore-product-image img,
.easystore-product-image video {
	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-review-show-more {
	display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--easystore-primary-color);
    background-color: transparent;
    border: 1px solid var(--easystore-primary-color);
    border-radius: 4px;
    cursor: pointer;
}
.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;
	}
}
@media (max-width: 768px) {
	.easystore-custom-col {
		flex: 0 0 15% !important;
		max-width: 15% !important;
	}
}

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

/* Order Details */
.easystore-order-items {
	display: flex;
	flex-direction: column;
}

.easystore-order-item {
	display: flex;
	position: relative;
	padding: 1rem 0;
	gap: 1rem;
}

.easystore-order-item-row {
	display: flex;
	flex-grow: 1;
}

.easystore-order-item-row > * {
	padding-right: 1rem;
}

.easystore-order-item-row > *:last-child {
	padding-right: 0;
}

.easystore-order-item + .easystore-order-item {
	border-top: 1px solid var(--easystore-border-color);
}

.easystore-order-item-data {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.easystore-order-quantity-price {
	display: flex;
	justify-content: space-between;
}

.easystore-order-quantity-price .easystore-quantity-selector .form-control {
	width: 90px;
}

.easystore-drawer .easystore-remove-cart-item {
	position: absolute;
	top: 10px;
	right: 10px;
}

/* Invoice Order Info */
.easystore-invoice-order-info {
	list-style: none;
}

.easystore-product-thumbnail {
	max-width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
}
.easystore-product-brand-image-link {
	text-decoration: none;
}

.easystore-product-brand-name-link {
	text-decoration: none;
}


/* Quantity Messages */
.easystore-qty-message {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.easystore-qty-message-icon {
  margin-right: 8px;
}

.easystore-qty-message-info {
  color: #515257;
}

.easystore-qty-message-error {
  color: #E62305;
}

/* Keep quick-modal layout stable with/without quantity info text */
.easystore-quick-cart .easystore-quantity-feedback {
	min-height: 30px;
}

.easystore-product-content .easystore-btn-add-to-cart:disabled,
.easystore-product-list .easystore-btn-add-to-cart:disabled {
    background: #F1F1F1;
    color: #8C8F96;
    border: #F1F1F1;
	cursor: not-allowed;
}
