/**
 * Enhanced Product Page Styles
 */

/* Import DM Serif Text Google Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital,wght@0,400;1,400&display=swap');

/* Apply DM Serif Text font to the product page */
.wc-epp-product-page {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'DM Serif Text', serif;
	font-size: 16px;
	font-weight: 400;
}

.wc-epp-product-page * {
	font-family: 'DM Serif Text', serif;
}

/* Collection Products Row (Above Main Image) */
.wc-epp-collection-products-row-wrapper {
	position: relative;
	padding: 15px 20px;
	background: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
	margin: 0 auto;
	margin-bottom: 0;
	z-index: 100;
	overflow: visible;
	width: 100%;
	max-width: 1170px;
}

.wc-epp-collection-title-top {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	padding: 0;
	text-align: center;
}

.wc-epp-collection-title-top.wc-epp-collection-title-clickable {
	cursor: pointer;
	transition: color 0.2s;
	user-select: none;
}

.wc-epp-collection-title-top.wc-epp-collection-title-clickable:hover {
	color: #0073aa;
	text-decoration: underline;
}

.wc-epp-collection-products-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	z-index: 100;
}

.wc-epp-collection-products-scroll {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: visible;
	flex: 1;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	padding: 5px 0 50px 0;
	justify-content: center;
}

.wc-epp-collection-products-scroll::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
	background: transparent;
}

.wc-epp-collection-products-scroll::-webkit-scrollbar-track {
	display: none;
}

.wc-epp-collection-products-scroll::-webkit-scrollbar-thumb {
	display: none;
}

.wc-epp-collection-nav-arrow {
	width: 32px;
	height: 28px;
	border: 1.5px solid #333;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 18px;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	z-index: 10;
	padding: 0;
	line-height: 1;
}

.wc-epp-collection-nav-arrow:hover {
	background: #333;
	color: #fff;
	transform: scale(1.1);
}

.wc-epp-collection-nav-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.wc-epp-collection-products-row::-webkit-scrollbar {
	height: 6px;
}

.wc-epp-collection-products-row::-webkit-scrollbar-track {
	background: transparent;
}

.wc-epp-collection-products-row::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}

.wc-epp-collection-product-link {
	display: block;
	flex: 0 0 auto;
	width: 92px;
	height: 92px;
	text-decoration: none;
	border: 2px solid #ddd;
	border-radius: 6px;
	overflow: visible;
	transition: all 0.3s ease;
	background: #fff;
	position: relative;
	z-index: 10;
}

.wc-epp-collection-product-link:hover {
	border-color: #0073aa;
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	z-index: 1000;
}

.wc-epp-collection-product-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Gallery Tooltip */
.wc-epp-gallery-tooltip {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
	pointer-events: none;
	z-index: 10000;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wc-epp-gallery-tooltip::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(0, 0, 0, 0.85);
}

.wc-epp-collection-product-link:hover .wc-epp-gallery-tooltip {
	opacity: 1;
	visibility: visible;
	bottom: -35px;
}


/* Collection Thumbnails */
.wc-epp-collection-thumbnails {
	padding: 20px 0;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
}

.wc-epp-collection-list {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}

.wc-epp-collection-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.wc-epp-collection-title-clickable {
	cursor: pointer;
	transition: color 0.2s;
	user-select: none;
}

.wc-epp-collection-title-clickable:hover {
	color: #0073aa;
	text-decoration: underline;
}

.wc-epp-collection-items {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding-bottom: 10px;
	position: relative;
}

.wc-epp-collection-items-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.wc-epp-collection-nav-arrow-collection {
	width: 32px;
	height: 28px;
	border: 1.5px solid #333;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 18px;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	z-index: 10;
	padding: 0;
	line-height: 1;
}

.wc-epp-collection-nav-arrow-collection:hover {
	background: #333;
	color: #fff;
	transform: scale(1.1);
}

.wc-epp-collection-nav-arrow-collection:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Lightbox */
.wc-epp-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	cursor: zoom-in;
}

.wc-epp-lightbox-content.zoomed {
	cursor: move;
	cursor: grab;
}

.wc-epp-lightbox-content.zoomed.grabbing {
	cursor: grabbing;
}

.wc-epp-lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	transform-origin: center center;
	transition: transform 0.3s ease;
}

.wc-epp-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	color: #333;
	font-size: 32px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: all 0.2s;
	z-index: 10001;
}

.wc-epp-lightbox-close:hover {
	background: #fff;
	transform: scale(1.1);
}

.wc-epp-lightbox-prev,
.wc-epp-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	color: #333;
	font-size: 36px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: all 0.2s;
	z-index: 10001;
}

.wc-epp-lightbox-prev {
	left: 20px;
}

.wc-epp-lightbox-next {
	right: 20px;
}

.wc-epp-lightbox-prev:hover,
.wc-epp-lightbox-next:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.1);
}

.wc-epp-collection-item {
	flex: 0 0 auto;
	width: 120px;
	text-align: center;
}

.wc-epp-collection-link {
	display: block;
	text-decoration: none;
	color: #333;
	transition: transform 0.2s;
}

.wc-epp-collection-link:hover {
	transform: translateY(-5px);
}

.wc-epp-collection-item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 4px;
	border: 2px solid transparent;
	transition: border-color 0.2s;
}

.wc-epp-collection-link:hover .wc-epp-collection-item img {
	border-color: #0073aa;
}

.wc-epp-collection-item-title {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.4;
}

/* Main Container */
.wc-epp-main-container {
	position: relative;
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	overflow: visible;
	padding: 0 20px;
}

/* Image Section */
.wc-epp-image-section {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.wc-epp-main-image-container {
	position: relative;
	width: 100%;
	height: 632.5px;
	min-height: 632.5px;
	display: flex;
	margin-top: 0;
	gap: 20px;
	align-items: flex-start;
}

/* Product Info Background Image Div */
.wc-epp-product-info-bg-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	max-width: 400px;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

.wc-epp-image-wrapper-section {
	position: relative;
	width: 70%;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.wc-epp-main-image-wrapper {
	position: relative;
	width: 100%;
	height: calc(100% - 100px);
	overflow: hidden;
	background: #f0f0f0;
	margin: 0 auto;
	cursor: pointer;
}

#wc-epp-main-image {
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.3s ease;
	display: block;
	margin: 0 auto;
	transform-origin: center center;
}

.wc-epp-image-action-buttons {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	display: flex;
	gap: 4px;
	flex-direction: column;
	overflow: visible;
}

.wc-epp-image-social-buttons {
	position: relative;
	margin-top: 15px;
	z-index: 20;
	display: flex;
	gap: 8px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	overflow: visible;
}

.wc-epp-social-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin-right: 0px !important;
	position: relative;
	overflow: visible;
}

.wc-epp-social-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wc-epp-social-btn:hover {
	background: #333;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wc-epp-like-btn.liked svg {
	fill: #e74c3c;
	stroke: #e74c3c;
}

.wc-epp-like-btn.liked {
	color: #e74c3c;
	border-color: #e74c3c;
}

/* Social Button Tooltip */
.wc-epp-social-tooltip {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
	pointer-events: none;
	z-index: 10000;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wc-epp-social-tooltip::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(0, 0, 0, 0.85);
}

.wc-epp-social-btn:hover .wc-epp-social-tooltip {
	opacity: 1;
	visibility: visible;
	bottom: -35px;
}

/* Share Dropdown */
.wc-epp-share-wrapper {
	position: relative;
	display: inline-block;
}

.wc-epp-share-dropdown {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	z-index: 10001;
	overflow: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

.wc-epp-share-wrapper:hover .wc-epp-share-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.wc-epp-share-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #fff;
}

.wc-epp-share-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
}

.wc-epp-share-option:last-child {
	border-bottom: none;
}

.wc-epp-share-option:hover {
	background: #f9f9f9;
	color: #0073aa;
}

.wc-epp-share-option svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.wc-epp-share-option[data-share="copy"] svg {
	stroke: currentColor;
	fill: none;
}

.wc-epp-share-option[data-share="twitter"] svg {
	fill: #000000;
}

.wc-epp-share-option[data-share="whatsapp"] svg {
	fill: #25D366;
}

.wc-epp-share-option[data-share="pinterest"] svg {
	fill: #BD081C;
}

.wc-epp-share-option[data-share="linkedin"] svg {
	fill: #0077B5;
}

.wc-epp-share-option[data-share="instagram"] svg {
	fill: #E4405F;
}

.wc-epp-share-option span {
	flex: 1;
	white-space: nowrap;
}

.wc-epp-fullscreen-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 20;
}

.wc-epp-fullscreen-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wc-epp-fullscreen-btn:hover {
	background: #333;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Thumbnails Below Main Image (Horizontal) */
.wc-epp-thumbnail-nav-horizontal {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	position: relative;
}

.wc-epp-thumbnail-scroll {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	flex: 1;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
	scroll-behavior: smooth;
}

.wc-epp-thumbnail-scroll::-webkit-scrollbar {
	height: 6px;
}

.wc-epp-thumbnail-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.wc-epp-thumbnail-scroll::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}

.wc-epp-thumbnail-nav-arrow {
	width: 36px;
	height: 40px;
	border: 2px solid #333;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 24px;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	z-index: 10;
}

.wc-epp-thumbnail-nav-arrow:hover {
	background: #333;
	color: #fff;
	transform: scale(1.1);
}

.wc-epp-thumbnail-nav-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Thumbnail Item (Horizontal) */
.wc-epp-thumbnail-item {
	width: 80px;
	height: 80px;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
	background: #fff;
	flex-shrink: 0;
}

.wc-epp-thumbnail-item:hover {
	transform: scale(1.05);
	border-color: #0073aa;
}

.wc-epp-thumbnail-item.active {
	border-color: #0073aa;
}

.wc-epp-thumbnail-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 3D Viewer */
.wc-epp-3d-viewer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

#wc-epp-3d-canvas {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	cursor: grab;
}

#wc-epp-3d-canvas:active {
	cursor: grabbing;
}

/* 3D Loading Progress */
.wc-epp-3d-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 101;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-progress-bar-container {
	width: 300px;
	max-width: 80%;
	text-align: center;
}

.wc-epp-progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 15px;
}

.wc-epp-progress-bar-fill {
	height: 100%;
	background: #0073aa;
	border-radius: 4px;
	transition: width 0.3s ease;
	width: 0%;
}

.wc-epp-progress-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.wc-epp-progress-percent {
	font-weight: 600;
	color: #0073aa;
}

.wc-epp-close-3d {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 102;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background 0.2s;
}

.wc-epp-close-3d:hover {
	background: #f0f0f0;
}

.wc-epp-3d-viewer-disclaimer {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 101;
	max-width: 90%;
	text-align: center;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 6px;
	backdrop-filter: blur(5px);
}

.wc-epp-3d-viewer-disclaimer p {
	margin: 0;
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wc-epp-3d-viewer-buttons {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 101;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.wc-epp-3d-viewer-btn {
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wc-epp-3d-viewer-btn:hover {
	background: #005a87;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.wc-epp-3d-viewer-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Floating 3D Viewer */
.wc-epp-floating-3d-viewer {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 375px;
	height: 375px;
	background: transparent;
	border-radius: 12px;
	overflow: hidden;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	display: none;
}

.wc-epp-floating-3d-viewer.active {
	display: block;
}

#wc-epp-floating-3d-canvas {
	width: 100%;
	height: 100%;
	cursor: grab;
	display: block;
}

#wc-epp-floating-3d-canvas:active {
	cursor: grabbing;
}

.wc-epp-floating-3d-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-floating-progress-bar-container {
	width: 80%;
	max-width: 200px;
}

.wc-epp-floating-progress-bar {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	overflow: hidden;
}

.wc-epp-floating-progress-bar-fill {
	height: 100%;
	background: #0073aa;
	border-radius: 2px;
	transition: width 0.3s ease;
	width: 0%;
}

.wc-epp-floating-3d-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: all 0.2s;
	color: #333;
	font-weight: bold;
}

.wc-epp-floating-3d-close:hover {
	background: rgba(255, 255, 255, 1);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.wc-epp-floating-3d-viewer {
		width: 250px;
		height: 250px;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
	}
	
	.wc-epp-floating-3d-close {
		width: 24px;
		height: 24px;
		font-size: 16px;
		top: 6px;
		right: 6px;
	}
}

@media (max-width: 480px) {
	.wc-epp-floating-3d-viewer {
		width: 188px;
		height: 188px;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
	}
}

.wc-epp-add-to-scene-btn {
	background: #0073aa;
}

.wc-epp-go-to-scene-btn {
	background: #28a745;
}

.wc-epp-go-to-scene-btn:hover {
	background: #218838;
}

.wc-epp-buy-3d-model-btn {
	background: #ff6b35;
}

.wc-epp-buy-3d-model-btn:hover {
	background: #e55a2b;
}

/* Legacy support for old button class */
.wc-epp-add-to-scene-button {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	z-index: 101;
	text-transform: uppercase;
	white-space: nowrap;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wc-epp-add-to-scene-button:hover {
	background: #005a87;
	transform: translateX(-50%) translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wc-epp-add-to-scene-button:active {
	transform: translateX(-50%) translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Dimension Image */
.wc-epp-dimension-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-dimension-image img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.wc-epp-close-dimensions {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #333;
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 101;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background 0.2s;
}

.wc-epp-close-dimensions:hover {
	background: #000;
}

/* Decor Image */
.wc-epp-decor-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-decor-image img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.wc-epp-close-decor {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #333;
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 101;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background 0.2s;
}

.wc-epp-close-decor:hover {
	background: #000;
}

/* Action Buttons (Dimensions, Decor and 3D) */
.wc-epp-action-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin-right: 0px !important;
	position: relative;
	overflow: visible;
}

.wc-epp-action-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wc-epp-action-btn:hover {
	background: #333;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Action Button Tooltip */
.wc-epp-action-tooltip {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translate(100%, -50%);
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, right 0.3s ease;
	pointer-events: none;
	z-index: 10000;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	margin-left: 8px;
}

.wc-epp-action-tooltip::before {
	content: '';
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid rgba(0, 0, 0, 0.85);
}

.wc-epp-action-btn:hover .wc-epp-action-tooltip {
	opacity: 1;
	visibility: visible;
	right: -5px;
}

/* Product Info Overlay */
.wc-epp-product-info-overlay {
	width: 29%;
	max-width: 400px;
	height: auto;
	min-height: fit-content;
	max-height: 100%;
	padding: 25px;
	padding-bottom: 35px;
	overflow-y: auto;
	overflow-x: visible;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	position: relative;
	background: #ffffff;
	z-index: 10;
	opacity: 0.9;
	align-self: flex-start;
	margin: 10px;
}

.wc-epp-product-info {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #ffffff;
	border-radius: 8px;
	gap: 15px;
	height: auto;
	min-height: fit-content;
}

.wc-epp-product-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 15px;
}

.wc-epp-product-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: #333;
	line-height: 1.2;
	flex: 1;
	padding-right: 0;
}

.wc-epp-title-icons {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

/* Common styles for all title icons */
.wc-epp-lightning-icon,
.wc-epp-bell-icon,
.wc-epp-whatsapp-icon {
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: none;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
	text-decoration: none;
	position: relative;
}

.wc-epp-lightning-icon-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	cursor: help;
	position: relative;
}

.wc-epp-lightning-icon {
	color: #ffa500;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-lightning-number-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #333;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	margin-left: -8px;
	position: relative;
	z-index: 1;
}

.wc-epp-lightning-icon svg,
.wc-epp-bell-icon svg,
.wc-epp-whatsapp-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wc-epp-lightning-icon svg {
	fill: currentColor;
	stroke: none;
}

.wc-epp-whatsapp-icon svg {
	fill: currentColor;
	stroke: none;
}

.wc-epp-lightning-icon:hover,
.wc-epp-bell-icon:hover,
.wc-epp-whatsapp-icon:hover {
	transform: scale(1.1);
}

.wc-epp-lightning-icon-wrapper:hover .wc-epp-lightning-icon {
	color: #ff8c00;
}

.wc-epp-bell-icon:hover {
	color: #0073aa;
}

.wc-epp-whatsapp-icon {
	color: #25D366;
}

.wc-epp-whatsapp-icon:hover {
	color: #20ba5a;
}


.wc-epp-product-code-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0;
	margin-bottom: 8px;
}

.wc-epp-product-code {
	font-size: 13px;
	color: #888;
	line-height: 1.4;
	font-weight: 500;
	flex: 1;
}

.wc-epp-product-code-icons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wc-epp-product-category {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.4;
}

.wc-epp-product-price {
	font-size: 24px;
	font-weight: 600;
	color: #0073aa;
	margin-bottom: 10px;
}

/* Hide WooCommerce default variation price display */
.wc-epp-product-info .woocommerce-variation-price,
.wc-epp-product-info .woocommerce-variation-price .price {
	display: none !important;
}

/* Hide any small price displays in add to cart area */
.wc-epp-add-to-cart .woocommerce-variation-price {
	display: none !important;
}

/* Show WooCommerce default variation dropdowns */
.wc-epp-product-info .variations_form .variations select,
.wc-epp-product-info .variations_form .variations .woocommerce-variation-select,
.wc-epp-product-info .variations_form table.variations {
	display: block !important;
}

/* Show variation table rows */
.wc-epp-product-info .variations_form tr {
	display: table-row !important;
}

/* Variant Labels */
.wc-epp-product-info .variations_form tr th label,
.wc-epp-product-info .variations_form tr td.label label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	display: block;
}

.wc-epp-product-info .variations_form tr th,
.wc-epp-product-info .variations_form tr td.label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	padding-bottom: 5px;
}

.wc-epp-product-info .variations_form tr td.value {
	padding-bottom: 5px;
	position: relative;
}

/* Variant Title Above Each Group */
.wc-epp-variant-title {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	display: block;
	padding-bottom: 3px;
	border-bottom: 1px solid #e0e0e0;
}

/* Selected Variants Display */
.wc-epp-selected-variants {
	margin-bottom: 12px;
	padding: 10px;
	background: #f5f5f5;
	border-radius: 6px;
	border-left: 3px solid #0073aa;
	font-size: 13px;
	color: #333;
	line-height: 1.4;
}

/* Hide custom thumbnail variant display - use dropdowns instead */
.wc-epp-product-variants {
	display: none !important;
}

.wc-epp-product-short-description {
	font-size: 13px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 20px;
}

/* Product Variants */
.wc-epp-product-variants {
	margin-bottom: 20px;
}

.wc-epp-variant-group {
	margin-bottom: 15px;
}

.wc-epp-variant-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.wc-epp-variant-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wc-epp-variant-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 8px;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	background: #fff;
	min-width: 70px;
}

.wc-epp-variant-option:hover {
	border-color: #0073aa;
	background: #f0f8ff;
	transform: translateY(-2px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wc-epp-variant-option.selected {
	border-color: #0073aa;
	background: #0073aa;
	color: #fff;
}

.wc-epp-variant-option.selected .wc-epp-variant-name {
	color: #fff;
}

.wc-epp-variant-color {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	border: 2px solid #ddd;
	display: block;
}

.wc-epp-variant-option.selected .wc-epp-variant-color {
	border-color: #fff;
}

.wc-epp-variant-thumbnail {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.wc-epp-variant-text {
	font-size: 12px;
	padding: 8px;
	text-align: center;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-variant-name {
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	color: #333;
	line-height: 1.2;
}

/* Product Tags */
.wc-epp-product-tags {
	margin-bottom: 10px;
	margin-top: 5px;
}

.wc-epp-tag {
	display: inline-block;
	padding: 4px 10px;
	background: #f0f0f0;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 5px;
	margin-bottom: 5px;
	color: #666;
}

/* Remove margin-right from buttons */
.wc-epp-product-info button,
.wc-epp-add-to-cart button,
.wc-epp-add-to-cart-wrapper button {
	margin-right: 0 !important;
}

/* Variations Wrapper - Hide quantity and button here */
.wc-epp-variations-wrapper {
	margin-bottom: 15px;
}

.wc-epp-variations-wrapper .quantity,
.wc-epp-variations-wrapper .single_add_to_cart_button {
	display: none !important;
}

/* Width Slider */
.wc-epp-width-slider-wrapper {
	margin-bottom: 15px;
	margin-top: 10px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
}

.wc-epp-width-slider-label {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.wc-epp-width-slider-container {
	position: relative;
}

.wc-epp-width-slider-wrapper-new {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wc-epp-width-slider-with-labels {
	display: flex;
	align-items: center;
	gap: 15px;
}

.wc-epp-min-label,
.wc-epp-max-label {
	font-size: 12px;
	color: #666;
	font-weight: 500;
	min-width: 50px;
	text-align: center;
}

.wc-epp-width-slider {
	flex: 1;
	height: 8px;
	border-radius: 4px;
	background: #ddd;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	cursor: pointer;
}

.wc-epp-width-input-wrapper {
	display: flex;
	justify-content: center;
}

.wc-epp-width-input {
	width: 120px;
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wc-epp-width-input:hover {
	border-color: #0073aa;
	box-shadow: 0 2px 5px rgba(0, 115, 170, 0.15);
}

.wc-epp-width-input:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wc-epp-width-input::-webkit-inner-spin-button,
.wc-epp-width-input::-webkit-outer-spin-button {
	opacity: 1;
	height: 20px;
	cursor: pointer;
}

.wc-epp-width-unit {
	font-size: 15px;
	font-weight: 600;
	color: #0073aa;
	min-width: 30px;
	text-align: left;
}

.wc-epp-width-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #0073aa;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 115, 170, 0.2);
	transition: all 0.2s;
	margin-top: -8px;
}

.wc-epp-width-slider::-webkit-slider-thumb:hover {
	background: #005a87;
	transform: scale(1.1);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.wc-epp-width-slider::-webkit-slider-thumb:active {
	transform: scale(1.15);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wc-epp-width-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #0073aa;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 115, 170, 0.2);
	transition: all 0.2s;
}

.wc-epp-width-slider::-moz-range-thumb:hover {
	background: #005a87;
	transform: scale(1.1);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.wc-epp-width-slider::-moz-range-thumb:active {
	transform: scale(1.15);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wc-epp-width-slider::-moz-range-track {
	height: 8px;
	border-radius: 4px;
	background: #ddd;
}

/* Old slider labels - no longer used */

/* Add to Cart */
.wc-epp-add-to-cart-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.wc-epp-add-to-cart-wrapper .wc-epp-add-to-cart {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	flex: 1;
}

.wc-epp-add-to-cart-wrapper form.cart {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.wc-epp-add-to-cart-wrapper .quantity {
	display: inline-block !important;
	margin-right: 0;
}

.wc-epp-add-to-cart-wrapper .single_add_to_cart_button {
	display: inline-block !important;
}

.wc-epp-buy-now-button {
	width: 100%;
	padding: 12px 20px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	white-space: nowrap;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.wc-epp-buy-now-button:hover {
	background: #0073aa;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wc-epp-buy-now-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

/* Metretül Info Display */
.wc-epp-metretul-info-wrapper {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 12px 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	display: none; /* Hidden by default, shown when metretül is calculated */
}

.wc-epp-metretul-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wc-epp-metretul-info-label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.wc-epp-metretul-info-price {
	font-size: 16px;
	font-weight: 700;
	color: #28a745;
}

.wc-epp-buy-now-price {
	font-size: 12px;
	font-weight: 500;
	opacity: 0.9;
	line-height: 1.2;
	text-transform: none;
}

/* Info Separator */
.wc-epp-info-separator {
	width: 100%;
	height: 1px;
	background: #e0e0e0;
	margin: 15px 0;
}

/* Delivery Time */
.wc-epp-delivery-time {
	font-size: 13px;
	color: #666;
	margin-top: 10px;
	margin-bottom: 10px;
	line-height: 1.4;
	padding-top: 0;
	border-top: none;
}

.wc-epp-add-to-cart-wrapper .wc-epp-add-to-cart {
	margin-bottom: 0;
	padding-top: 0;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}

.wc-epp-add-to-cart-wrapper .wc-epp-add-to-cart form.cart {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
}

.wc-epp-add-to-cart-wrapper .wc-epp-add-to-cart .single_add_to_cart_button {
	margin: 0;
}

.wc-epp-bell-icon {
	width: 40px;
	height: 40px;
	padding: 0;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
	margin-left: 10px;
	vertical-align: middle;
}

.wc-epp-bell-icon svg {
	width: 20px;
	height: 20px;
}

.wc-epp-bell-icon:hover {
	background: #333;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wc-epp-add-to-cart-wrapper .wc-epp-bell-icon {
	margin-left: 10px;
}

/* Hide bell icon in product info div */
.wc-epp-product-info .wc-epp-bell-icon,
.wc-epp-product-info-overlay .wc-epp-bell-icon,
.wc-epp-add-to-cart-wrapper .wc-epp-bell-icon {
	display: none !important;
}

/* Hide customize button in wrong locations */
.wc-epp-add-to-cart-wrapper .wc-epp-customize-button,
.wc-epp-variations-wrapper .wc-epp-customize-button,
.wc-epp-add-to-cart .wc-epp-customize-button,
form.cart .wc-epp-customize-button {
	display: none !important;
}

/* Only show customize and partner buttons in their designated location (after Buy Now) */
.wc-epp-product-info > .wc-epp-customize-button,
.wc-epp-product-info > .wc-epp-partner-button {
	display: block !important;
}

.wc-epp-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.wc-epp-whatsapp-button:hover {
	background: #20ba5a;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.wc-epp-whatsapp-button svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.wc-epp-delivery-time {
	font-size: 13px;
	color: #666;
	margin-top: 10px;
	line-height: 1.4;
	padding-top: 10px;
	border-top: 1px solid #e0e0e0;
}

/* Customize Button */
.wc-epp-customize-button {
	width: 100%;
	padding: 5px 10px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	display: block;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 10px;
}

.wc-epp-customize-button:hover {
	background: #0073aa;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wc-epp-customize-button:hover {
	background: #0073aa;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ortak Ol Button */
.wc-epp-partner-button {
	width: 100%;
	padding: 5px 10px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	display: block;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 10px;
}

.wc-epp-partner-button:hover {
	background: #0073aa;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Customization Modal */
.wc-epp-customization-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.wc-epp-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 10001;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.wc-epp-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	color: #333;
}

.wc-epp-modal-close:hover {
	background: #333;
	color: #fff;
}

.wc-epp-modal-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 25px 0;
	color: #333;
	text-align: center;
}

.wc-epp-customization-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wc-epp-form-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wc-epp-form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 2px;
}

.wc-epp-form-select,
.wc-epp-form-input,
.wc-epp-form-textarea {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	width: 100%;
	transition: border-color 0.2s;
	font-family: inherit;
}

.wc-epp-form-select:focus,
.wc-epp-form-input:focus,
.wc-epp-form-textarea:focus {
	outline: none;
	border-color: #0073aa;
}

.wc-epp-form-textarea {
	resize: vertical;
	min-height: 100px;
}

.wc-epp-dimensions-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.wc-epp-dimension-input {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.wc-epp-dimension-input label {
	font-size: 12px;
	font-weight: 500;
	color: #666;
}

.wc-epp-checkboxes-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.wc-epp-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
}

.wc-epp-checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.wc-epp-modal-footer-note {
	background: #f5f5f5;
	padding: 15px;
	border-radius: 4px;
	margin-top: 10px;
}

.wc-epp-modal-footer-note p {
	margin: 0 0 8px 0;
	font-size: 12px;
	color: #666;
	line-height: 1.5;
}

.wc-epp-modal-footer-note p:last-child {
	margin-bottom: 0;
}

/* Form Row */
.wc-epp-form-row {
	margin-bottom: 20px;
}

/* Metretül Display */
.wc-epp-metretul-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-top: 10px;
}

.wc-epp-metretul-display,
.wc-epp-metretul-price-display {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
}

.wc-epp-metretul-label,
.wc-epp-metretul-price-label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.wc-epp-metretul-value {
	font-size: 16px;
	font-weight: 700;
	color: #0073aa;
}

.wc-epp-metretul-price-value {
	font-size: 18px;
	font-weight: 700;
	color: #28a745;
}

/* Dimension Note */
.wc-epp-dimension-note {
	margin-top: 15px;
	padding: 12px;
	background: #f0f7ff;
	border-left: 3px solid #0073aa;
	border-radius: 4px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

/* Image Upload */
.wc-epp-image-upload-wrapper {
	position: relative;
}

.wc-epp-image-upload-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.wc-epp-image-upload-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 20px;
	border: 2px dashed #ddd;
	border-radius: 8px;
	background: #f9f9f9;
	cursor: pointer;
	transition: all 0.3s;
}

.wc-epp-image-upload-label:hover {
	border-color: #0073aa;
	background: #f0f7ff;
}

.wc-epp-upload-icon {
	font-size: 24px;
}

.wc-epp-upload-text {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.wc-epp-image-preview {
	position: relative;
	margin-top: 15px;
	display: inline-block;
	max-width: 200px;
}

.wc-epp-image-preview img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 2px solid #ddd;
}

.wc-epp-remove-image {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #ff4444;
	color: #fff;
	border: 2px solid #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.wc-epp-remove-image:hover {
	background: #cc0000;
	transform: scale(1.1);
}

/* RAL Color Selector - Enhanced Tone-Based */
.wc-epp-ral-color-preview {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	margin-bottom: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}

.wc-epp-ral-preview-label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.wc-epp-ral-preview-code {
	font-size: 16px;
	font-weight: 700;
	color: #0073aa;
	padding: 4px 12px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ddd;
}

.wc-epp-ral-remove {
	width: 24px;
	height: 24px;
	margin-left: auto;
	background: #f44336;
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.wc-epp-ral-remove:hover {
	background: #d32f2f;
	transform: scale(1.1);
}

.wc-epp-tones {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 15px;
}

.wc-epp-tone-group {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.wc-epp-tone-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
}

.wc-epp-tone-header-wrapper {
	flex: 1;
	padding: 10px 15px;
	border-radius: 6px;
}

.wc-epp-tone-header-wrapper.wc-epp-color1 {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color2 {
	background: linear-gradient(135deg, #FF8C00 0%, #FF6347 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color3 {
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color4 {
	background: linear-gradient(135deg, #9370DB 0%, #4B0082 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color5 {
	background: linear-gradient(135deg, #4169E1 0%, #000080 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color6 {
	background: linear-gradient(135deg, #32CD32 0%, #006400 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color7 {
	background: linear-gradient(135deg, #808080 0%, #2F2F2F 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color8 {
	background: linear-gradient(135deg, #8B4513 0%, #3E2723 100%);
}

.wc-epp-tone-header-wrapper.wc-epp-color9 {
	background: linear-gradient(135deg, #FFFFFF 0%, #000000 100%);
}

.wc-epp-tone-header {
	margin: 0;
}

.wc-epp-tone-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wc-epp-btn-show {
	display: flex;
	gap: 10px;
}

.wc-epp-show-more,
.wc-epp-show-less {
	padding: 8px 16px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.wc-epp-show-more:hover,
.wc-epp-show-less:hover {
	background: #005a87;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wc-epp-tone-colors-row {
	padding: 20px;
}

.wc-epp-tone-preview,
.wc-epp-tone-more {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wc-epp-ral-color-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 50px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: all 0.2s;
	border: 2px solid transparent;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
}

.wc-epp-ral-color-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-color: #0073aa;
	z-index: 10;
}

.wc-epp-ral-color-item.selected {
	border-color: #0073aa;
	border-width: 3px;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
	transform: scale(1.05);
	z-index: 10;
}

/* Fabric Selector */
.wc-epp-fabric-selector-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wc-epp-fabric-select {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
	width: 100%;
}

.wc-epp-fabric-thumbnails {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 12px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
}

.wc-epp-fabric-thumbnail {
	position: relative;
	cursor: pointer;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.2s;
}

.wc-epp-fabric-thumbnail:hover {
	border-color: #0073aa;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.wc-epp-fabric-thumbnail.selected {
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.wc-epp-fabric-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.wc-epp-fabric-thumbnail-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 10px;
	padding: 4px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Metretül Calculation in Modal */
.wc-epp-metretul-calculation-row {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.wc-epp-metretul-calculation-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}

.wc-epp-metretul-value-wrapper,
.wc-epp-metretul-price-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wc-epp-metretul-label,
.wc-epp-metretul-price-label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.wc-epp-metretul-value {
	font-size: 16px;
	font-weight: 700;
	color: #0073aa;
}

.wc-epp-metretul-price {
	font-size: 16px;
	font-weight: 700;
	color: #28a745;
}

/* Price Note */
.wc-epp-price-note {
	padding: 15px;
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	border-radius: 4px;
	margin-top: 10px;
}

.wc-epp-price-note p {
	margin: 0 0 5px 0;
	font-size: 13px;
	color: #856404;
	line-height: 1.5;
}

.wc-epp-price-note p:last-child {
	margin-bottom: 0;
}

.wc-epp-modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.wc-epp-modal-cancel,
.wc-epp-modal-add-to-cart {
	flex: 1;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.wc-epp-modal-cancel {
	background: #f0f0f0;
	color: #333;
}

.wc-epp-modal-cancel:hover {
	background: #e0e0e0;
}

.wc-epp-modal-add-to-cart {
	background: #0073aa;
	color: #fff;
}

.wc-epp-modal-add-to-cart:hover {
	background: #005a87;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Modal Sliders */
.wc-epp-dimension-sliders-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 15px;
}

.wc-epp-modal-slider-wrapper {
	margin-bottom: 0;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
}

.wc-epp-modal-slider-label {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.wc-epp-modal-slider-container {
	position: relative;
}

.wc-epp-modal-slider-with-labels {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.wc-epp-modal-min-label,
.wc-epp-modal-max-label {
	font-size: 12px;
	color: #666;
	font-weight: 500;
	min-width: 50px;
	text-align: center;
}

.wc-epp-modal-slider {
	flex: 1;
	height: 8px;
	border-radius: 4px;
	background: #ddd;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	cursor: pointer;
}

.wc-epp-modal-slider-input-wrapper {
	display: flex;
	justify-content: center;
}

.wc-epp-modal-slider-input {
	width: 120px;
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wc-epp-modal-slider-input:hover {
	border-color: #0073aa;
	box-shadow: 0 2px 5px rgba(0, 115, 170, 0.15);
}

.wc-epp-modal-slider-input:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wc-epp-modal-slider-input::-webkit-inner-spin-button,
.wc-epp-modal-slider-input::-webkit-outer-spin-button {
	opacity: 1;
	height: 20px;
	cursor: pointer;
}

/* Webkit slider thumb */
.wc-epp-modal-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #0073aa;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 115, 170, 0.2);
	transition: all 0.2s;
	margin-top: -8px;
}

.wc-epp-modal-slider::-webkit-slider-thumb:hover {
	background: #005a87;
	transform: scale(1.1);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.wc-epp-modal-slider::-webkit-slider-thumb:active {
	transform: scale(1.15);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Firefox slider thumb */
.wc-epp-modal-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #0073aa;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 115, 170, 0.2);
	transition: all 0.2s;
}

.wc-epp-modal-slider::-moz-range-thumb:hover {
	background: #005a87;
	transform: scale(1.1);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.wc-epp-modal-slider::-moz-range-thumb:active {
	transform: scale(1.15);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wc-epp-modal-slider::-moz-range-track {
	height: 8px;
	border-radius: 4px;
	background: #ddd;
}

/* Notification Modal Styles */
.wc-epp-notification-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-notification-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 999999;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.wc-epp-notification-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wc-epp-notification-section {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.wc-epp-notification-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.wc-epp-notification-section-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: #333;
}

.wc-epp-notification-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wc-epp-notification-option {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	padding: 8px;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.wc-epp-notification-option:hover {
	background-color: #f5f5f5;
}

.wc-epp-notification-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	flex-shrink: 0;
}

.wc-epp-notification-option span {
	flex: 1;
}

.wc-epp-notification-modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.wc-epp-notification-modal-actions .wc-epp-modal-cancel,
.wc-epp-notification-modal-actions .wc-epp-modal-confirm {
	flex: 1;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.wc-epp-notification-modal-actions .wc-epp-modal-cancel {
	background: #f0f0f0;
	color: #333;
}

.wc-epp-notification-modal-actions .wc-epp-modal-cancel:hover {
	background: #e0e0e0;
}

.wc-epp-notification-modal-actions .wc-epp-modal-confirm {
	background: #0073aa;
	color: #fff;
}

.wc-epp-notification-modal-actions .wc-epp-modal-confirm:hover {
	background: #005a87;
}

/* Quick View Modal */
.wc-epp-quick-view-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-quick-view-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.wc-epp-quick-view-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 10001;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.wc-epp-quick-view-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	transition: all 0.2s;
	z-index: 10002;
}

.wc-epp-quick-view-close:hover {
	background: #333;
	color: #fff;
}

.wc-epp-quick-view-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #ddd;
	border-radius: 50%;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	transition: all 0.3s;
	z-index: 10002;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wc-epp-quick-view-nav:hover {
	background: #fff;
	border-color: #0073aa;
	color: #0073aa;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.wc-epp-quick-view-nav:active {
	transform: translateY(-50%) scale(1.05);
}

.wc-epp-quick-view-prev {
	left: 15px;
}

.wc-epp-quick-view-next {
	right: 15px;
}

.wc-epp-quick-view-loader {
	text-align: center;
	padding: 60px 40px;
	font-size: 16px;
	color: #666;
}

.wc-epp-quick-view-spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #0073aa;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.wc-epp-quick-view-body {
	min-height: 200px;
}

.wc-epp-quick-view-product {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.wc-epp-quick-view-image {
	flex: 1;
	min-width: 300px;
}

.wc-epp-quick-view-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.wc-epp-quick-view-info {
	flex: 1;
	min-width: 300px;
}

.wc-epp-quick-view-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #333;
}

.wc-epp-quick-view-price {
	font-size: 22px;
	font-weight: 600;
	color: #0073aa;
	margin-bottom: 20px;
}

.wc-epp-quick-view-description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 25px;
}

.wc-epp-quick-view-add-to-cart {
	margin-bottom: 20px;
}

.wc-epp-quick-view-link {
	margin-top: 20px;
}

.wc-epp-quick-view-link .button {
	display: inline-block;
	padding: 12px 24px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.2s;
}

.wc-epp-quick-view-link .button:hover {
	background: #005a87;
}

@media (max-width: 768px) {
	.wc-epp-quick-view-product {
		flex-direction: column;
	}
	
	.wc-epp-quick-view-image,
	.wc-epp-quick-view-info {
		min-width: 100%;
	}
	
	.wc-epp-quick-view-nav {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
	
	.wc-epp-quick-view-prev {
		left: 10px;
	}
	
	.wc-epp-quick-view-next {
		right: 10px;
	}
}

/* Collection Popup Modal */
.wc-epp-collection-popup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wc-epp-collection-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.wc-epp-collection-popup-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 1200px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1000000;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.wc-epp-collection-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	transition: all 0.2s;
	z-index: 1000001;
}

.wc-epp-collection-popup-close:hover {
	background: #333;
	color: #fff;
}

.wc-epp-collection-popup-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #333;
	padding-right: 50px;
}

.wc-epp-collection-popup-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.wc-epp-collection-popup-loading {
	text-align: center;
	padding: 40px;
	font-size: 18px;
	color: #666;
}

.wc-epp-collection-popup-product {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	cursor: pointer;
}

.wc-epp-collection-popup-product:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.wc-epp-collection-popup-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wc-epp-collection-popup-product-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f5f5f5;
}

.wc-epp-collection-popup-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.wc-epp-collection-popup-product:hover .wc-epp-collection-popup-product-image img {
	transform: scale(1.05);
}

.wc-epp-collection-popup-product-info {
	padding: 15px;
}

.wc-epp-collection-popup-product-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
	color: #333;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wc-epp-collection-popup-product-price {
	font-size: 18px;
	font-weight: 700;
	color: #0073aa;
}

@media (max-width: 768px) {
	.wc-epp-collection-popup-content {
		padding: 30px 20px;
		max-width: 95%;
	}
	
	.wc-epp-collection-popup-products {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 15px;
	}
	
	.wc-epp-collection-popup-product-image {
		height: 150px;
	}
}

/* Archive Collection Carousel */
.wc-epp-archive-collection-group {
	margin: 40px 0;
	padding: 0 20px;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.wc-epp-archive-collection-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #333;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
	display: block;
}

.wc-epp-kreasyon-label {
	font-weight: 600;
	color: #666;
	margin-right: 8px;
}

.wc-epp-kreasyon-name {
	color: #0073aa;
	font-weight: 700;
}

.wc-epp-archive-collection-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

.wc-epp-archive-collection-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
	padding: 10px 0;
}

.wc-epp-archive-collection-carousel::-webkit-scrollbar {
	display: none;
}

.wc-epp-archive-carousel-nav {
	width: 40px;
	height: 40px;
	border: 2px solid #333;
	background: #fff;
	color: #333;
	font-size: 24px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	flex-shrink: 0;
	z-index: 10;
}

.wc-epp-archive-carousel-nav:hover {
	background: #333;
	color: #fff;
	transform: scale(1.1);
}

.wc-epp-archive-carousel-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.wc-epp-archive-product-item {
	flex: 0 0 auto;
	width: 220px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.wc-epp-archive-product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.wc-epp-archive-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wc-epp-archive-product-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #f5f5f5;
}

.wc-epp-archive-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.wc-epp-archive-product-item:hover .wc-epp-archive-product-image img {
	transform: scale(1.05);
}

.wc-epp-archive-product-info {
	padding: 15px;
}

.wc-epp-archive-product-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
	color: #333;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wc-epp-archive-product-price {
	font-size: 18px;
	font-weight: 700;
	color: #0073aa;
}

.wc-epp-archive-product-price del {
	color: #999;
	font-weight: 400;
	font-size: 14px;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.wc-epp-archive-product-item {
		width: 180px;
	}
	
	.wc-epp-archive-product-image {
		height: 180px;
	}
	
	.wc-epp-archive-carousel-nav {
		width: 35px;
		height: 35px;
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.wc-epp-archive-product-item {
		width: 160px;
	}
	
	.wc-epp-archive-product-image {
		height: 160px;
	}
	
	.wc-epp-archive-product-title {
		font-size: 14px;
	}
	
	.wc-epp-archive-product-price {
		font-size: 16px;
	}
}

/* Related Products Slider */
.wc-epp-related-products-section {
	max-width: 1170px;
	margin: 40px auto;
	padding: 0 20px;
}

.wc-epp-related-products-slider-wrapper {
	margin-top: 40px;
}

.wc-epp-related-products-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #333;
	text-align: center;
}

.wc-epp-related-products-slider-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

.wc-epp-related-products-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
}

.wc-epp-related-products-slider::-webkit-scrollbar {
	display: none;
}

.wc-epp-related-product-slide {
	flex: 0 0 auto;
	width: 200px;
}

.wc-epp-related-product-link {
	display: block;
	text-decoration: none;
	color: #333;
	transition: transform 0.2s;
}

.wc-epp-related-product-link:hover {
	transform: translateY(-5px);
}

.wc-epp-related-product-link img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 10px;
}

.wc-epp-related-product-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: #333;
}

.wc-epp-related-product-price {
	font-size: 16px;
	font-weight: 700;
	color: #0073aa;
}

.wc-epp-related-nav-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid #333;
	background: #fff;
	color: #333;
	font-size: 24px;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}

.wc-epp-related-nav-arrow:hover {
	background: #333;
	color: #fff;
	transform: scale(1.1);
}

.wc-epp-related-nav-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Reviews Section */
/* Product Listings Section */
.wc-epp-product-listings-wrapper {
	max-width: 1170px;
	margin: 40px auto;
	padding: 0 20px;
}

.wc-epp-product-listings-section {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
}

.wc-epp-product-listing-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wc-epp-product-listing-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #333;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
	text-align: center;
}

.wc-epp-product-listing-items {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wc-epp-product-listing-item {
	display: flex;
	width: 100%;
}

.wc-epp-product-listing-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s;
	padding: 12px;
	border: 1px solid #eee;
	border-radius: 8px;
}

.wc-epp-product-listing-link:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	border-color: #0073aa;
}

.wc-epp-product-listing-image {
	width: 100%;
	height: 120px;
	overflow: hidden;
	border-radius: 6px;
	background: #f5f5f5;
}

.wc-epp-product-listing-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wc-epp-product-listing-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
	text-align: center;
}

.wc-epp-product-listing-item-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	color: #333;
	line-height: 1.3;
}

.wc-epp-product-listing-item-price {
	font-size: 14px;
	font-weight: 700;
	color: #0073aa;
}

/* Responsive styles for product listings */
@media (max-width: 1200px) {
	.wc-epp-product-listings-section {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.wc-epp-product-listings-section {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.wc-epp-product-listings-section {
		grid-template-columns: 1fr;
	}
}

.wc-epp-reviews-section {
	max-width: 1170px;
	margin: 40px auto;
	padding: 0 20px;
}

/* Quantity Selector - Visible */
.wc-epp-add-to-cart .quantity {
	display: inline-block !important;
	margin-right: 10px;
}

.wc-epp-add-to-cart .single_add_to_cart_button {
	width: auto;
	min-width: 70px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-block;
	line-height: 1.4;
	margin-right: 0 !important;
}

.wc-epp-add-to-cart .single_add_to_cart_button:hover {
	background: #005a87;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Product Tabs */
.wc-epp-product-tabs {
	width: 100%;
	max-width: 1170px;
	margin: 40px auto;
	padding: 0 20px;
	display: flex;
	justify-content: flex-start;
}

.wc-epp-tabs-wrapper {
	width: 70%;
	position: relative;
	z-index: 1;
	margin: 0;
}

.wc-epp-tabs-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #eee;
	gap: 0;
}

.wc-epp-tab-item {
	margin: 0;
	padding: 0;
}

.wc-epp-tab-item a {
	display: block;
	padding: 15px 25px;
	text-decoration: none;
	color: #666;
	font-weight: 500;
	border-bottom: 3px solid transparent;
	transition: all 0.2s;
	margin-bottom: -2px;
}

.wc-epp-tab-item.active a,
.wc-epp-tab-item a:hover {
	color: #0073aa;
	border-bottom-color: #0073aa;
}

.wc-epp-tabs-content {
	padding: 30px 0;
}

.wc-epp-tab-panel {
	display: none;
}

.wc-epp-tab-panel.active {
	display: block;
}

/* Full width layout for tab panel content */
.wc-epp-tab-panel {
	column-count: 1;
	column-gap: 0;
	column-rule: none;
}

.wc-epp-tab-panel > * {
	break-inside: avoid;
	margin-bottom: 15px;
}

.wc-epp-tab-panel p {
	margin-bottom: 15px;
}

/* Description Read More */
.wc-epp-description-wrapper {
	position: relative;
}

.wc-epp-description-content {
	font-size: 13px;
	line-height: 1.6;
	color: #666;
}

.wc-epp-description-short {
	display: block !important;
}

.wc-epp-description-full {
	display: none !important;
}

.wc-epp-description-wrapper.expanded .wc-epp-description-short {
	display: none !important;
}

.wc-epp-description-wrapper.expanded .wc-epp-description-full {
	display: block !important;
}

.wc-epp-read-more-btn {
	margin-top: 15px;
	padding: 10px 20px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	display: inline-block;
}

.wc-epp-read-more-btn:hover {
	background: #005a87;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wc-epp-read-more-btn:active {
	transform: translateY(0);
}

.wc-epp-tab-panel h1,
.wc-epp-tab-panel h2,
.wc-epp-tab-panel h3,
.wc-epp-tab-panel h4,
.wc-epp-tab-panel h5,
.wc-epp-tab-panel h6 {
	break-after: avoid;
	margin-top: 0;
}

.wc-epp-tab-panel img {
	max-width: 100%;
	height: auto;
	break-inside: avoid;
}

/* Responsive: single column on smaller screens */
@media (max-width: 768px) {
	.wc-epp-tab-panel {
		column-count: 1;
		column-rule: none;
	}
}

/* Legal Accordion Styles */
.wc-epp-tab-panel#wc-epp-tab-legal {
	column-count: 1;
	column-rule: none;
}

.wc-epp-legal-accordion,
.wc-epp-legal-links {
	width: 100%;
}

.wc-epp-legal-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 18px 20px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
	cursor: pointer;
}

.wc-epp-legal-link:hover {
	background: #f0f0f0;
	color: #0073aa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.wc-epp-legal-link span:first-child {
	flex: 1;
	padding-right: 15px;
	text-align: left;
}

.wc-epp-accordion-icon {
	font-size: 20px;
	font-weight: 300;
	color: #0073aa;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

/* Keep old accordion styles for backward compatibility */
.wc-epp-accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
}

.wc-epp-accordion-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wc-epp-accordion-header {
	width: 100%;
	padding: 18px 20px;
	background: #f9f9f9;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	transition: all 0.3s ease;
}

.wc-epp-accordion-header:hover {
	background: #f0f0f0;
	color: #0073aa;
}

.wc-epp-accordion-header span:first-child {
	flex: 1;
	padding-right: 15px;
}

.wc-epp-accordion-item.active .wc-epp-accordion-icon {
	transform: rotate(45deg);
}

.wc-epp-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
	padding: 0 20px;
}

.wc-epp-accordion-item.active .wc-epp-accordion-content {
	max-height: 1000px;
	padding: 20px;
}

.wc-epp-accordion-content p {
	margin: 0;
	line-height: 1.6;
	color: #666;
}

/* Related Products */
.wc-epp-related-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.wc-epp-related-product {
	text-align: center;
}

.wc-epp-related-product a {
	text-decoration: none;
	color: #333;
	display: block;
	transition: transform 0.2s;
}

.wc-epp-related-product a:hover {
	transform: translateY(-5px);
}

.wc-epp-related-product img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 10px;
}

.wc-epp-related-product h4 {
	font-size: 16px;
	margin: 10px 0 5px;
}

.wc-epp-related-product .price {
	font-size: 18px;
	font-weight: 600;
	color: #0073aa;
}

/* Collection Grid */
.wc-epp-collection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.wc-epp-collection-grid-item {
	text-align: center;
}

.wc-epp-collection-grid-item a {
	text-decoration: none;
	color: #333;
	display: block;
	transition: transform 0.2s;
}

.wc-epp-collection-grid-item a:hover {
	transform: translateY(-5px);
}

.wc-epp-collection-grid-item img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 10px;
}

.wc-epp-collection-grid-item h4 {
	font-size: 16px;
	margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.wc-epp-product-info-overlay {
		width: 45%;
		max-width: 380px;
		padding: 20px;
		top: 15px;
		right: 30px;
		border-radius: 10px;
	}
	
	.wc-epp-left-nav {
		left: 15px;
		top: 15px;
		bottom: 15px;
	}
	
	.wc-epp-thumbnail-item,
	.wc-epp-action-btn {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 768px) {
	.wc-epp-main-container {
		height: auto;
		min-height: 400px;
		padding: 0 10px;
	}
	
	.wc-epp-3d-viewer-disclaimer {
		bottom: 90px;
		max-width: 95%;
		padding: 8px 15px;
	}
	
	.wc-epp-3d-viewer-disclaimer p {
		font-size: 11px;
	}
	
	.wc-epp-3d-viewer-buttons {
		top: 15px;
		left: 50%;
		transform: translateX(-50%);
		gap: 5px;
	}
	
	.wc-epp-3d-viewer-btn {
		padding: 4px 8px;
		font-size: 9px;
	}
}

@media (max-width: 768px) {
	.wc-epp-main-image-container {
		height: auto;
		min-height: 400px;
		flex-direction: column;
		padding: 15px;
	}
	
	.wc-epp-image-wrapper-section {
		width: 100%;
		height: auto;
		min-height: 300px;
	}
	
	.wc-epp-product-info-overlay {
		width: 100%;
		max-width: 100%;
		max-height: none;
	}
}

@media (max-width: 480px) {
	.wc-epp-3d-viewer-disclaimer {
		bottom: 120px;
		max-width: 95%;
		padding: 8px 12px;
	}
	
	.wc-epp-share-dropdown {
		min-width: 180px;
		left: auto;
		right: 0;
		transform: none;
	}
	
	.wc-epp-share-dropdown::after {
		left: auto;
		right: 20px;
		transform: none;
	}
	
	.wc-epp-share-option {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.wc-epp-share-option svg {
		width: 18px;
		height: 18px;
	}
	
	.wc-epp-3d-viewer-disclaimer p {
		font-size: 10px;
	}
	
	.wc-epp-3d-viewer-buttons {
		top: 15px;
		left: 50%;
		transform: translateX(-50%);
		gap: 4px;
		flex-wrap: wrap;
		max-width: calc(100% - 40px);
		justify-content: center;
	}
	
	.wc-epp-3d-viewer-btn {
		padding: 4px 8px;
		font-size: 9px;
	}
	
	.wc-epp-main-image-container {
		padding: 10px;
	}
	
	.wc-epp-action-buttons {
		top: 15px;
		left: 15px;
		gap: 6px;
	}
	
	.wc-epp-action-btn {
		width: 36px;
		height: 36px;
	}
	
	.wc-epp-action-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.wc-epp-add-to-cart .quantity input,
	.wc-epp-add-to-cart .quantity .qty {
		width: 40px;
		height: 28px;
		font-size: 11px;
	}
	
	.wc-epp-add-to-cart .single_add_to_cart_button {
		min-width: 60px;
		padding: 4px 8px;
		font-size: 11px;
	}
	
	.wc-epp-customize-button {
		min-width: 60px;
		padding: 4px 8px;
		font-size: 11px;
	}
	
	.wc-epp-product-info-overlay {
		position: relative;
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: fit-content;
		padding: 20px;
		box-shadow: none;
		border-radius: 10px;
		top: 0;
		right: 0;
		margin: 20px 0;
		overflow: visible;
	}
	
	.wc-epp-left-nav {
		left: 10px;
		top: 10px;
		bottom: 10px;
	}
	
	.wc-epp-thumbnail-item,
	.wc-epp-action-btn {
		width: 40px;
		height: 40px;
	}
	
	.wc-epp-action-btn svg {
		width: 20px;
		height: 20px;
	}
	
	.wc-epp-action-buttons-top {
		gap: 8px;
	}
	
	.wc-epp-thumbnail-nav {
		gap: 8px;
	}
	
	.wc-epp-action-buttons {
		bottom: 15px;
		right: 15px;
	}
	
	.wc-epp-action-btn {
		padding: 10px 18px;
		font-size: 12px;
	}
	
	.wc-epp-collection-items {
		gap: 10px;
	}
	
	.wc-epp-collection-item {
		width: 100px;
	}
	
	.wc-epp-tabs-nav {
		flex-wrap: wrap;
	}
	
	.wc-epp-tab-item a {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.wc-epp-modal-content {
		max-width: 95%;
		padding: 20px;
	}
	
	.wc-epp-dimension-sliders-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.wc-epp-modal-slider-wrapper {
		margin-bottom: 0;
	}
	
	.wc-epp-checkboxes-group {
		grid-template-columns: repeat(2, 1fr);
	}
}

