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

.easystore-product-single .easystore-btn-add-to-cart,
.easystore-product-single .easystore-btn-buy-now,
.easystore-product-single .easystore-btn-catalog-cta {
	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-buy-now,
.easystore-product-single .easystore-btn-catalog-cta,
.easystore-product-single .easystore-btn-add-to-wishlist,
.easystore-product-single .easystore-btn-add-to-compare {
	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,
.easystore-product-single .easystore-btn-add-to-wishlist {
	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-compare,
.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-product-video.easystore-thumbnail--single {
	padding-bottom: 0 !important;
}

.easystore-product-image[easystore-thumbnail-wrapper]>[x-ref="productVideo"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

[easystore-thumbnail-wrapper] .easystore-ratio,
.easystore-thumbnail--list .easystore-ratio,
.easystore-product-video .easystore-ratio,
.easystore-product-image .easystore-ratio,
[easystore-thumbnail-wrapper] .easystore-ratio-4x3,
.easystore-thumbnail--list .easystore-ratio-4x3,
.easystore-product-video .easystore-ratio-4x3,
.easystore-product-image .easystore-ratio-4x3,
[easystore-thumbnail-wrapper] .easystore-ratio-16x9,
.easystore-thumbnail--list .easystore-ratio-16x9,
.easystore-product-video .easystore-ratio-16x9,
.easystore-product-image .easystore-ratio-16x9,
[easystore-thumbnail-wrapper] .easystore-ratio-3x2,
.easystore-thumbnail--list .easystore-ratio-3x2,
.easystore-product-video .easystore-ratio-3x2,
.easystore-product-image .easystore-ratio-3x2 {
	padding-top: 0 !important;
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

[easystore-thumbnail-wrapper] .easystore-video-thumbnail,
.easystore-thumbnail--list .easystore-video-thumbnail,
.easystore-product-video .easystore-video-thumbnail,
.easystore-product-image .easystore-video-thumbnail {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

[easystore-thumbnail-wrapper] .easystore-video-thumbnail video,
.easystore-thumbnail--list .easystore-video-thumbnail video,
.easystore-product-video .easystore-video-thumbnail video,
.easystore-product-image .easystore-video-thumbnail video {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
}

[easystore-thumbnail-wrapper] .easystore-video-thumbnail svg,
.easystore-thumbnail--list .easystore-video-thumbnail svg,
.easystore-product-video .easystore-video-thumbnail svg,
.easystore-product-image .easystore-video-thumbnail svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 2;
}

.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;
}

: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-video-thumbnail {
	position: relative;
}

.easystore-video-thumbnail video {
	display: block;
	cursor: pointer;
}

.easystore-product-video .easystore-video-thumbnail {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.easystore-product-video .easystore-video-thumbnail video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.easystore-zoom-gallery-preview .easystore-video-thumbnail {
	display: flex;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.easystore-zoom-gallery-preview .easystore-video-thumbnail video {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.easystore-zoom-gallery-preview .easystore-ratio {
	display: flex;
	align-items: center;
	justify-content: center;
}

.easystore-video-thumbnail video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.easystore-video-thumbnail svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.easystore-video-thumbnail.is-playing svg,
.easystore-gallery-video.is-playing svg,
.easystore-product-video .easystore-video-thumbnail.is-playing svg,
[x-ref='productVideo'] .easystore-video-thumbnail.is-playing svg,
.easystore-gallery-image .easystore-gallery-video.is-playing svg {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

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

.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);
}

.easystore-product-gallery > .easystore-gallery-image .easystore-ratio,
.easystore-product-gallery > .easystore-gallery-image .easystore-ratio-4x3 {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	padding-top: 0 !important;
	margin: 0 !important;
}

.easystore-product-gallery > .easystore-gallery-image .easystore-gallery-video {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f2f4;
}

.easystore-product-gallery > .easystore-gallery-image .easystore-gallery-video video {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
}

.easystore-product-gallery > .easystore-gallery-image .easystore-gallery-video svg {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 24px !important;
	height: 24px !important;
	pointer-events: none;
	z-index: 2;
}

/* 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-btn-review-form {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
}

.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-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-preview img,
.easystore-zoom-gallery-preview video {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	cursor: pointer;
}

.easystore-zoom-gallery-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 0;
	border: 1px solid #e5e5e5;
	background: #fff;
}

.thumb-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.thumb-image-wrapper>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.thumb-image-wrapper .easystore-ratio {
	width: 100%;
	height: 100%;
	padding-top: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.thumb-image-wrapper .easystore-video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.thumb-image-wrapper .easystore-video-thumbnail video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.thumb-image-wrapper .easystore-video-thumbnail svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 1;
}

.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;
}

/* Custom Fields Addon Styles */
.easystore-custom-fields {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.easystore-custom-fields-grid {
	display: grid;
	gap: 1rem;
}

.easystore-grid-cols-1 {
	grid-template-columns: 1fr;
}

.easystore-grid-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.easystore-grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.easystore-grid-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.easystore-grid-cols-5 {
	grid-template-columns: repeat(5, 1fr);
}

.easystore-grid-cols-6 {
	grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991.98px) {

	.easystore-grid-cols-6,
	.easystore-grid-cols-5,
	.easystore-grid-cols-4,
	.easystore-grid-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {

	.easystore-grid-cols-6,
	.easystore-grid-cols-5,
	.easystore-grid-cols-4,
	.easystore-grid-cols-3,
	.easystore-grid-cols-2 {
		grid-template-columns: 1fr;
	}
}

.easystore-custom-fields-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.easystore-custom-field-inline-item {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.easystore-custom-fields-dl {
	margin-bottom: 1rem;
}

.easystore-custom-fields-dl-row {
	display: flex;
	align-items: baseline;
	padding: 0.35rem 0;
	border-bottom: 1px dashed #e5e7eb;
}

.easystore-custom-fields-dl-row:last-child {
	border-bottom: none;
}

.easystore-custom-fields-dl.label-pos-top .easystore-custom-fields-dl-row {
	flex-direction: column;
}

.easystore-custom-fields-dl dt {
	min-width: 140px;
	font-weight: 600;
	color: #374151;
	margin: 0;
}

.easystore-custom-fields-dl dd {
	margin: 0;
	color: #111827;
}

.easystore-custom-fields-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.easystore-custom-field-card-box {
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	overflow: hidden;
	background: #ffffff;
}

.easystore-card-box-header {
	padding: 0.5rem 0.75rem;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.875rem;
}

.easystore-card-box-body {
	padding: 0.75rem;
}

.easystore-custom-field-subform-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.easystore-subform-row {
	padding: 0.25rem 0.5rem;
	background: #f9fafb;
	border-radius: 4px;
	font-size: 0.875rem;
}

.easystore-subform-col {
	margin-right: 0.5rem;
}

.easystore-custom-field-email,
.easystore-custom-field-tel {
	color: var(--easystore-primary-color, #2563eb);
	text-decoration: underline;
}

.easystore-custom-field-card {
	padding: 0.75rem 1rem;
	border: 1px solid var(--easystore-border-color, #e5e7eb);
	border-radius: 6px;
	background-color: #ffffff;
}

.easystore-custom-field-card.label-pos-top .easystore-custom-field-label-wrap {
	display: block;
	margin-bottom: 0.25rem;
}

.easystore-custom-field-card.label-pos-inline {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.easystore-custom-field-item.label-pos-top .easystore-custom-field-label-wrap {
	display: block;
	margin-bottom: 0.25rem;
}

.easystore-custom-field-item.label-pos-inline {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.easystore-custom-field-separator {
	margin: 0 0.25rem;
}

.easystore-custom-fields-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.easystore-custom-field-badge-item {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	background: #f3f4f6;
	border-radius: 9999px;
	font-size: 0.875rem;
	gap: 0.35rem;
}

.easystore-custom-field-badge {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	background: #e5e7eb;
	border-radius: 4px;
	font-size: 0.8125rem;
	margin-right: 0.25rem;
}

.easystore-custom-field-color {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.easystore-color-swatch-circle {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
	vertical-align: middle;
}

.easystore-custom-field-img {
	max-width: 120px;
	max-height: 120px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
}

.easystore-custom-field-restricted {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #6b7280;
	font-size: 0.875rem;
	font-style: italic;
}

.easystore-restricted-login-link {
	color: var(--easystore-primary-color, #2563eb);
	font-weight: 500;
	text-decoration: underline;
}

/* Accordion Mode */
.easystore-custom-fields-accordion .easystore-accordion-item {
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	margin-bottom: 0.5rem;
	overflow: hidden;
}

.easystore-accordion-header {
	margin: 0;
}

.easystore-accordion-button {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.875rem 1.25rem;
	background: #f9fafb;
	border: none;
	cursor: pointer;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
	color: #111827;
	transition: background 0.2s ease;
}

.easystore-accordion-button:hover {
	background: #f3f4f6;
}

.easystore-accordion-arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.easystore-accordion-button.is-collapsed .easystore-accordion-arrow {
	transform: rotate(-45deg);
}

.easystore-accordion-body {
	padding: 1.25rem;
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
}

/* Tabs Mode */
.easystore-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	border-bottom: 2px solid #e5e7eb;
	margin-bottom: 1rem;
	padding: 0;
	list-style: none;
}

.easystore-tab-button {
	padding: 0.625rem 1.25rem;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	font-weight: 500;
	color: #6b7280;
	transition: color 0.2s, border-color 0.2s;
}

.easystore-tab-button:hover {
	color: #111827;
}

.easystore-tab-button.is-active {
	color: var(--easystore-primary-color, #2563eb);
	border-bottom-color: var(--easystore-primary-color, #2563eb);
	font-weight: 600;
}

.easystore-tab-pane {
	padding: 0.5rem 0;
}