 .pwh-main-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	overflow: hidden;
}
.pwh-product-area {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 40px;
}
/* Image Gallery Section */
.pwh-image-gallery {
	position: relative;
}
.pwh-large-image-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background: #f8f9fa;
	margin-bottom: 20px;
	height: 500px;
	width: 100%;
	max-width: 600px;
}
.pwh-large-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.pwh-large-image:hover {
	transform: scale(1.05);
}
.pwh-zoom-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: flex;
	border: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #41533b;
	font-size: 20px;
}
.pwh-zoom-icon:hover {
	background: #41533b;
	color: white;
	transform: scale(1.1);
}
.pwh-thumbnail-wrapper {
	position: relative;
	width: 100%;
	max-width: 600px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.pwh-thumbnail-container {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px 0;
	flex: 1;
	transition: all 0.4s ease;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}
.pwh-thumbnail-container::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}
.pwh-thumbnail-nav {
	width: 35px;
	height: 35px;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #41533b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	color: #41533b;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	flex-shrink: 0;
}
.pwh-thumbnail-nav:hover {
	background: #41533b;
	color: white;
	transform: scale(1.1);
}
.pwh-thumbnail-nav.pwh-hidden {
	opacity: 0;
	pointer-events: none;
}
.pwh-thumbnail {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.pwh-thumbnail:hover,
.pwh-thumbnail.pwh-active {
	border-color: #48bb78;
	box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}
.pwh-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Product Details Section */
.pwh-product-details {
	padding: 20px 0;
}
.pwh-product-title {
	font-size: 32px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
}
.pwh-price-section {
	background: linear-gradient(135deg, #41533b15 0%, #48bb7815 100%);
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 30px;
}
.pwh-price-row {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}
.pwh-new-price {
	font-size: 36px;
	font-weight: 700;
	color: #41533b;
	display: flex;
	align-items: center;
	gap: 5px;
}
.pwh-old-price {
	font-size: 24px;
	color: #a0aec0;
	text-decoration: line-through;
	display: flex;
	align-items: center;
	gap: 5px;
}
.pwh-rupee-icon {
	height: 20px;
	width: auto;
}
.pwh-rupee-icon-small {
	height: 14px;
	width: auto;
}
.pwh-save-text {
	color: #48bb78;
	font-weight: 600;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.pwh-save-percentage {
	background: #48bb78;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 14px;
	margin-left: 5px;
}
/* Form Section */
.pwh-cart-form {
	margin-bottom: 30px;
}
.pwh-form-group {
	margin-bottom: 20px;
}
.pwh-form-label {
	display: block;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 10px;
	font-size: 16px;
}
.pwh-size-select {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 16px;
	color: #2d3748;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
}
.pwh-size-select:focus {
	outline: none;
	border-color: #41533b;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.pwh-add-cart-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #41533b 0%, #48bb78 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.pwh-add-cart-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.pwh-add-cart-btn:active {
	transform: translateY(0);
}
/* Share Section */
.pwh-share-block {
	padding: 25px;
	background: #f7fafc;
	border-radius: 15px;
	text-align: center;
}
.pwh-share-title {
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 15px;
	font-size: 16px;
}
.pwh-share-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
	list-style: none;
}
.pwh-share-icons a {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 20px;
}
.pwh-share-icons a.pwh-facebook {
	background: #1877f2;
	color: white;
}
.pwh-share-icons a.pwh-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: white;
}
.pwh-share-icons a.pwh-twitter {
	background: #1da1f2;
	color: white;
}
.pwh-share-icons a.pwh-whatsapp {
	background: #25d366;
	color: white;
}
.pwh-share-icons a.pwh-copy-link {
	background: #6c757d;
	color: white;
}
.pwh-share-icons a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Description Section */
.pwh-description-section {
	padding: 40px;
	background: #f7fafc;
}
.pwh-tab-header {
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 30px;
}
.pwh-tab-nav {
	display: flex;
	gap: 30px;
	list-style: none;
}
.pwh-tab-nav li a {
	display: block;
	padding: 15px 0;
	color: #718096;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
}
.pwh-tab-nav li a.pwh-active,
.pwh-tab-nav li a:hover {
	color: #41533b;
	border-bottom-color: #41533b;
}
.pwh-tab-content {
	display: none;
	animation: pwhFadeIn 0.5s ease;
}
.pwh-tab-content.pwh-active {
	display: block;
}
@keyframes pwhFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.pwh-description-text {
	color: #4a5568;
	line-height: 1.8;
	font-size: 16px;
}
/* Shipping Grid Styles */
.pwh-shipping-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 10px;
}
.pwh-shipping-card {
	background: white;
	padding: 25px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}
.pwh-shipping-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
	border-color: #41533b;
}
.pwh-shipping-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #41533b 0%, #48bb78 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	flex-shrink: 0;
}
.pwh-shipping-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 5px;
}
.pwh-shipping-info p {
	color: #718096;
	font-size: 14px;
	margin: 0;
}
/* Modern Zoom Popup Styles */
.pwh-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	display: none;
	padding: 80px 120px 120px 120px;
	box-sizing: border-box;
}
.pwh-popup-overlay.pwh-active {
	display: block;
}
.pwh-popup-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pwh-popup-content {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pwh-popup-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	cursor: grab;
	border-radius: 10px;
}
.pwh-popup-image:active {
	cursor: grabbing;
}
.pwh-popup-image.pwh-zoomed {
	cursor: move;
}
.pwh-popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 56px;
	height: 56px;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 300;
	z-index: 10001;
}
.pwh-popup-close:hover {
	background: #41533b;
}
.pwh-popup-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 300;
	z-index: 10002;
}
.pwh-nav-left {
	left: 20px;
}
.pwh-nav-right {
	right: 20px;
}
.pwh-popup-nav:hover {
	background: rgba(255, 255, 255, 0.2);
}
.pwh-popup-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	z-index: 10002;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 12px 24px;
}
.pwh-popup-control {
	width: 48px;
	height: 48px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
.pwh-popup-control:hover {
	background: #41533b;
}
/* Responsive Design */
@media (max-width: 1200px) {
	.pwh-main-wrapper {
		margin: 0 10px;
	}        
	.pwh-product-area {
		gap: 30px;
		padding: 30px;
	}
}
@media (max-width: 992px) {
	.pwh-product-area {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 25px;
	}
	.pwh-large-image-container {
		height: 400px;
		width: 100%;
		max-width: 100%;
	}
	.pwh-thumbnail-wrapper {
		width: 100%;
		max-width: 100%;
	}
	.pwh-shipping-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 15px;
	}
}
@media (max-width: 768px) {
	.pwh-main-wrapper {
		border-radius: 15px;
		margin: 0;
	}
	.pwh-product-area {
		padding: 20px;
		gap: 25px;
	}
	.pwh-large-image-container {
		height: 300px;
		width: 100%;
		max-width: 100%;
	}
	.pwh-thumbnail-wrapper {
		width: 100%;
		max-width: 100%;
		gap: 15px;
	}
	.pwh-product-title {
		font-size: 24px;
	}
	.pwh-new-price {
		font-size: 28px;
	}
	.pwh-old-price {
		font-size: 20px;
	}
	.pwh-tab-nav {
		gap: 15px;
		overflow-x: auto;
		padding-bottom: 5px;
	}
	.pwh-tab-nav li a {
		white-space: nowrap;
		padding: 12px 0;
		font-size: 15px;
	}
	.pwh-description-section {
		padding: 25px 20px;
	}
	.pwh-shipping-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.pwh-shipping-card {
		padding: 20px;
		gap: 15px;
	}
	.pwh-shipping-icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.pwh-shipping-info h4 {
		font-size: 16px;
	}
	.pwh-shipping-info p {
		font-size: 13px;
	}
}
@media (max-width: 576px) {
	.pwh-main-wrapper {
		border-radius: 10px;
	}
	.pwh-product-area {
		padding: 15px;
		gap: 20px;
	}
	.pwh-large-image-container {
		height: 250px;
		width: 100%;
		max-width: 100%;
	}
	.pwh-thumbnail-wrapper {
		width: 100%;
		max-width: 100%;
		gap: 12px;
	}
	.pwh-product-title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.pwh-price-section {
		padding: 15px;
		margin-bottom: 20px;
	}
	.pwh-new-price {
		font-size: 24px;
	}
	.pwh-old-price {
		font-size: 18px;
	}
	.pwh-save-text {
		font-size: 16px;
	}
	.pwh-save-percentage {
		font-size: 12px;
		padding: 3px 8px;
	}
	.pwh-size-select {
		padding: 12px 15px;
		font-size: 15px;
	}
	.pwh-add-cart-btn {
		padding: 15px;
		font-size: 16px;
	}
	.pwh-share-block {
		padding: 20px;
	}
	.pwh-share-icons a {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.pwh-thumbnail-container {
		gap: 10px;
	}
	.pwh-thumbnail {
		width: 80px;
		height: 80px;
	}
	.pwh-thumbnail-nav {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
	.pwh-zoom-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
		top: 15px;
		right: 15px;
	}
	.pwh-description-section {
		padding: 20px 15px;
	}
	.pwh-tab-nav {
		gap: 10px;
	}
	.pwh-tab-nav li a {
		font-size: 14px;
		padding: 10px 0;
	}
	.pwh-shipping-card {
		padding: 15px;
		gap: 12px;
	}
	.pwh-shipping-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	.pwh-shipping-info h4 {
		font-size: 15px;
	}
	.pwh-shipping-info p {
		font-size: 12px;
	}
	/* Mobile popup controls */
	.pwh-popup-overlay {
		padding: 60px 80px 100px 80px;
	}
	.pwh-popup-nav {
		width: 45px;
		height: 45px;
		font-size: 24px;
	}
	.pwh-nav-left {
		left: 15px;
	}
	.pwh-nav-right {
		right: 15px;
	}
	.pwh-popup-controls {
		bottom: 15px;
		gap: 10px;
		padding: 10px 20px;
	}
	.pwh-popup-control {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	.pwh-popup-close {
		width: 40px;
		height: 40px;
		font-size: 20px;
		top: 15px;
		right: 15px;
	}
}
@media (max-width: 400px) {
	.pwh-product-title {
		font-size: 18px;
	}
	.pwh-new-price {
		font-size: 22px;
	}
	.pwh-old-price {
		font-size: 16px;
	}
	.pwh-thumbnail {
		width: 70px;
		height: 70px;
	}
	.pwh-thumbnail-container {
		gap: 8px;
	}
	.pwh-large-image-container {
		height: 220px;
		width: 100%;
		max-width: 100%;
	}
	.pwh-thumbnail-wrapper {
		width: 100%;
		max-width: 100%;
		gap: 10px;
	}
	/* Extra small mobile popup controls */
	.pwh-popup-overlay {
		padding: 50px 60px 80px 60px;
	}
	.pwh-popup-nav {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	.pwh-nav-left {
		left: 10px;
	}
	.pwh-nav-right {
		right: 10px;
	}
	.pwh-popup-controls {
		bottom: 10px;
		gap: 8px;
		padding: 8px 16px;
	}
	.pwh-popup-control {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}
	.pwh-popup-close {
		width: 36px;
		height: 36px;
		font-size: 18px;
		top: 10px;
		right: 10px;
	}
}
.product-size-select {
	width: 100%;
	padding: 8px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	font-size: 14px;
	color: #333;
}
.product-size-select:focus {
	border-color: #666;
	outline: none;
}
label[for^="size_"] {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: #666;
}