/* Modern Design System - Enhanced Styles */
.no-scrollbar { 
  scrollbar-width: none; 
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar { 
  display: none; 
}

/* Enhanced Product Cards */
.product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #f59e0b;
}

/* Product Card Image Hover Effects */
.product-card img {
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* Product Card Button Animations */
.product-card .add-cart {
  position: relative;
  overflow: hidden;
}

.product-card .add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.product-card .add-cart:hover::before {
  left: 100%;
}

/* Wishlist Button Hover Effects */
.product-card .wishlist-btn {
  transition: all 0.3s ease;
}

.product-card .wishlist-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Card Gradient Overlay */
.product-card .group:hover .absolute {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

/* Hero Carousel Styles */
#hero-carousel {
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Controls */
#carousel-prev,
#carousel-next {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#carousel-prev:hover,
#carousel-next:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-indicator {
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Carousel Animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-slide.active {
  animation: fadeInSlide 1s ease-in-out;
}

/* Banner Carousel Styles */
#banner-carousel {
  position: relative;
}

#banner-carousel .carousel-container {
  position: relative;
  overflow: hidden;
  height: 24rem; /* 确保容器有固定高度 */
  background: #f3f4f6; /* 备用背景色 */
}

#banner-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

#banner-carousel .carousel-slide.active {
  opacity: 1;
}

#banner-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Banner Carousel Controls */
#banner-carousel-prev,
#banner-carousel-next {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#banner-carousel-prev:hover,
#banner-carousel-next:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-carousel-indicator {
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner-carousel-indicator.active {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.banner-carousel-indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Banner Carousel Animation */
@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#banner-carousel .carousel-slide.active {
  animation: bannerFadeIn 1s ease-in-out;
}

/* Banner Images Grid Styles */
.banner-grid-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-grid-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.banner-grid-item img {
  transition: transform 0.5s ease;
}

.banner-grid-item:hover img {
  transform: scale(1.1);
}

/* Responsive Banner Grid */
@media (max-width: 768px) {
  .banner-grid-item {
    height: 16rem;
  }
}

/* Luxury Text Effects */
.luxury-text {
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #0ea5e9, #0284c7, #0369a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Watch Glow */
.watch-glow {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.watch-glow:hover {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
  transform: scale(1.05);
}

/* Modern Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Glass Morphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Hover Effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-scale {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Modern Grid Layouts */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-auto-fill {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Responsive Typography */
.text-responsive {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.heading-responsive {
  font-size: clamp(2rem, 5vw, 4rem);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0ea5e9, #f59e0b);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #0284c7, #d97706);
}

/* Drawer & overlay helpers */
.overlay-hidden { opacity: 0; pointer-events: none; }
.overlay-visible { opacity: 1; pointer-events: auto; }

/* Centered modal */
.modal-hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }
.modal-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Policy modal specific styles */
.policy-link {
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: none;
	font-size: inherit;
	color: inherit;
}

.policy-link:hover {
	text-decoration: underline;
}

/* Ensure policy modals have proper z-index */
#privacy-modal, #terms-modal, #return-modal {
	z-index: 50;
}

/* Policy modal content styling */
.prose {
	max-width: none;
}

.prose p {
	margin-bottom: 1rem;
}

.prose ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.prose li {
	margin-bottom: 0.5rem;
}

/* Mobile-specific optimizations for policy section */
@media (max-width: 640px) {
	.policy-link {
		padding: 0.5rem 0;
		min-height: 44px; /* Ensure touch targets are large enough */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	/* Ensure policy modals are properly sized on mobile */
	#privacy-modal, #terms-modal, #return-modal {
		padding: 1rem;
	}
	
	#privacy-modal .relative, #terms-modal .relative, #return-modal .relative {
		margin: 0;
		border-radius: 1rem;
	}
}

/* Enhanced Toast Notifications */
.toast-notification {
	animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.toast-notification.exit {
	animation: slideOutRight 0.3s ease-in;
}

@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Mobile toast adjustments */
@media (max-width: 640px) {
	.toast-notification {
		right: 1rem;
		left: 1rem;
		min-width: auto;
		max-width: none;
	}
}

/* Product Detail Page Styles */
.pdp-main-image {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-main-image:hover {
	transform: scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pdp-detail-image {
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.pdp-detail-image:hover {
	transform: scale(1.05);
	border-color: #0ea5e9;
	box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.pdp-detail-image.active {
	border-color: #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Enhanced Product Buttons */
.pdp-btn-primary {
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.pdp-btn-primary:hover::before {
	left: 100%;
}

.pdp-btn-primary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
}

.pdp-btn-gold {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-btn-gold::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.pdp-btn-gold:hover::before {
	left: 100%;
}

.pdp-btn-gold:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.pdp-btn-wishlist {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pdp-btn-wishlist::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
	transition: left 0.5s;
}

.pdp-btn-wishlist:hover::before {
	left: 100%;
}

.pdp-btn-wishlist:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Size Selection Buttons */
.pdp-size-btn {
	transition: all 0.3s ease;
	border: 2px solid #e5e7eb;
	background: white;
}

.pdp-size-btn:hover {
	border-color: #0ea5e9;
	background: #f0f9ff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.pdp-size-btn.selected {
	border-color: #0ea5e9;
	background: #0ea5e9;
	color: white;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.pdp-size-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #f9fafb;
	border-color: #d1d5db;
}

/* Quantity Controls */
.pdp-qty-controls {
	transition: all 0.3s ease;
}

.pdp-qty-btn {
	transition: all 0.2s ease;
}

.pdp-qty-btn:hover {
	background: #e5e7eb;
	transform: scale(1.05);
}

.pdp-qty-btn:active {
	transform: scale(0.95);
}

/* Product Features Section */
.pdp-features {
	background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
	border: 1px solid rgba(14, 165, 233, 0.1);
	transition: all 0.3s ease;
}

.pdp-features:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Price Display */
.pdp-price-current {
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pdp-discount-badge {
	animation: pulse 2s infinite;
}

/* Product Description */
.pdp-description {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-left: 4px solid #0ea5e9;
	transition: all 0.3s ease;
}

.pdp-description:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

/* Loading States */
.pdp-loading {
	position: relative;
	overflow: hidden;
}

.pdp-loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% { left: -100%; }
	100% { left: 100%; }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
	.pdp-main-image {
		height: 300px;
	}
	
	.pdp-btn-primary,
	.pdp-btn-gold {
		py: 3;
		px: 6;
		font-size: 0.9rem;
	}
	
	.pdp-features {
		padding: 1rem;
	}
}

/* Animation for product details */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pdp-animate-in {
	animation: slideInUp 0.6s ease-out;
}

/* Hover effects for product sections */
.pdp-section {
	transition: all 0.3s ease;
}

.pdp-section:hover {
	transform: translateY(-2px);
}

/* Enhanced focus states for accessibility */
.pdp-btn-primary:focus,
.pdp-btn-gold:focus,
.pdp-btn-wishlist:focus {
	outline: 2px solid #0ea5e9;
	outline-offset: 2px;
}

.pdp-size-btn:focus {
	outline: 2px solid #0ea5e9;
	outline-offset: 2px;
}


/* Enhanced Product Information Layout */
.pdp-info-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.pdp-info-section:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

/* Product Status Indicators */
.pdp-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
}

.pdp-status.in-stock {
	background: #dcfce7;
	color: #166534;
}

.pdp-status.low-stock {
	background: #fef3c7;
	color: #92400e;
}

.pdp-status.out-of-stock {
	background: #fee2e2;
	color: #dc2626;
}

/* Product Rating Display */
.pdp-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pdp-rating-stars {
	display: flex;
	gap: 2px;
}

.pdp-star {
	width: 16px;
	height: 16px;
	color: #fbbf24;
}

.pdp-star.empty {
	color: #e5e7eb;
}

/* Product Badges */
.pdp-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pdp-badge.new {
	background: #dcfce7;
	color: #166534;
}

.pdp-badge.sale {
	background: #fee2e2;
	color: #dc2626;
}

.pdp-badge.featured {
	background: #fef3c7;
	color: #92400e;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 640px) {
	.pdp-info-section {
		padding: 16px;
	}
}

/* Advanced Animation Effects */
.pdp-fade-in {
	animation: pdpFadeIn 0.8s ease-out;
}

.pdp-slide-up {
	animation: pdpSlideUp 0.6s ease-out;
}

.pdp-scale-in {
	animation: pdpScaleIn 0.5s ease-out;
}

@keyframes pdpFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pdpSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pdpScaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Staggered Animation for Product Sections */
.pdp-section:nth-child(1) { animation-delay: 0.1s; }
.pdp-section:nth-child(2) { animation-delay: 0.2s; }
.pdp-section:nth-child(3) { animation-delay: 0.3s; }
.pdp-section:nth-child(4) { animation-delay: 0.4s; }

/* Interactive Hover States */
.pdp-interactive:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Loading Skeleton Animation */
.pdp-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: pdpSkeleton 1.5s infinite;
}

@keyframes pdpSkeleton {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* Micro-interactions */
.pdp-micro-interaction {
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-micro-interaction:active {
	transform: scale(0.98);
}

/* Enhanced Focus States */
.pdp-focus-ring:focus {
	outline: 2px solid #0ea5e9;
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Smooth Transitions for Dynamic Content */
.pdp-dynamic-content {
	transition: all 0.3s ease;
}

/* Product Image Gallery Effects */
.pdp-gallery-item {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.pdp-gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pdp-gallery-item.active {
	border: 2px solid #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Enhanced Button States */
.pdp-btn-loading {
	position: relative;
	color: transparent;
}

.pdp-btn-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-top: 2px solid currentColor;
	border-radius: 50%;
	animation: pdpSpin 1s linear infinite;
}

@keyframes pdpSpin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success Animation */
.pdp-success-animation {
	animation: pdpSuccess 0.6s ease-out;
}

@keyframes pdpSuccess {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

/* Error Animation */
.pdp-error-animation {
	animation: pdpError 0.6s ease-out;
}

@keyframes pdpError {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

