/* Header Image Styles */
.header-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.header-main-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.header-main-image:hover {
  transform: scale(1.02);
}

/* Header CTA Overlay */
.header-cta-overlay {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-cta-button {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  padding: 18px 40px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
  background: linear-gradient(135deg, #9333ea, #db2777);
}

.header-cta-button::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 ease;
}

.header-cta-button:hover::before {
  left: 100%;
}

/* Mobile responsiveness for header */
@media (max-width: 768px) {
  .header-image-section {
    padding: 0;
  }

  .header-main-image {
    width: 100%;
    height: auto;
  }

  .header-cta-overlay {
    bottom: 10%;
  }

  .header-cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header-cta-overlay {
    bottom: 8%;
  }

  .header-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Optimized CSS for better performance */
.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Optimized Background Gradient Animation */
.bg-gradient-animation {
  background: linear-gradient(-45deg, #ffecd2, #fcb69f, #c2e9fb, #a1c4fd);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  will-change: background-position;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hardware-accelerated Card Animations */
.floating-card, .product-card {
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-card:hover, .product-card:hover {
  transform: translateZ(0) translateY(-8px) scale(1.02);
}

/* Optimized Floating Animation */
@keyframes float {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50% { transform: translateZ(0) translateY(-10px); }
}

.floating-card:nth-child(odd) {
  animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(even) {
  animation: float 4s ease-in-out infinite reverse;
  animation-delay: 0.5s;
}

/* Simplified Pulse Animation */
@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

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

/* Optimized Header */
header {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
  will-change: transform;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling for anchor links */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Optimized Button Effects */
button {
  will-change: transform;
  transition: transform 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Optimized Form Inputs */
input:focus, select:focus, textarea:focus {
  transform: scale(1.01);
  transition: transform 0.2s ease;
}

/* Simplified Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 6px;
}

/* Section Optimization */
section {
  position: relative;
  overflow: hidden;
}

/* Responsive Optimizations */
@media (max-width: 768px) {
  .floating-card, .product-card {
    animation: none;
    will-change: auto;
  }

  .floating-card:hover, .product-card:hover {
    transform: none;
  }

  .bg-gradient-animation {
    animation: none;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
  }
}

/* Optimized Navigation */
nav a {
  position: relative;
  overflow: hidden;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Simplified Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Optimized Text Gradient */
.text-gradient {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Simplified Focus States */
.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
}

/* Hero Section */
#home {
  /* Normal section height */
}

/* Hero CTA Button Advanced Styling */
.hero-cta-button {
  position: relative;
  z-index: 10;
}

.hero-cta-button::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 ease;
}

.hero-cta-button:hover::before {
  left: 100%;
}

.hero-cta-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff8bd2, #d588ff, #a855f7);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-cta-button:hover::after {
  opacity: 1;
}

/* Pulsing glow effect */
@keyframes hero-button-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.hero-cta-button {
  animation: hero-button-glow 3s ease-in-out infinite;
}

/* Button text gradient on hover */
.hero-cta-button:hover {
  background-clip: text;
  -webkit-background-clip: text;
}

/* Mobile Performance */
@media (max-width: 640px) {
  .product-card {
    padding: 1rem;
  }

  .product-card h3 {
    font-size: 0.9rem;
  }

  .product-card button {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  /* Hero button mobile optimization */
  .hero-cta-button {
    padding: 16px 28px !important;
    font-size: 16px !important;
    animation: none; /* Disable glow animation on mobile for performance */
  }

  /* Hero header mobile */
  #home {
    min-height: 50vh !important;
    max-height: 60vh !important;
    height: 50vh !important;
    background-size: cover;
    background-position: center;
  }

  /* Header container mobile */
  .header-container {
    padding: 20px 15px;
  }

  .header-content h1 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    margin-bottom: 0.8rem !important;
  }

  .header-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    margin-bottom: 1.5rem !important;
  }
}

/* Particle Effect */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fff 30%, transparent 70%);
  border-radius: 50%;
  animation: float-particles 8s linear infinite;
}

.floating-particles::before {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 20%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float-particles {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Card Glow Effect */
.product-card {
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(147, 51, 234, 0.1), transparent);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.product-card:hover::before {
  opacity: 1;
}

/* Modal Animation */
#successModal .transform {
  transition: all 0.3s ease;
}

#successModal.flex .transform {
  transform: scale(1);
}

/* Text Gradient Effects */
@keyframes twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.star-particle {
  position: absolute;
  color: #ffd700;
  animation: twinkle 2s ease-in-out infinite;
  pointer-events: none;
}

/* Golden Labubu Shimmer Effect */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

/* Premium Collection Styling */
.premium-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.premium-card:hover::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #a855f7, #ec4899, #3b82f6, #a855f7);
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

/* Premium Button Styles */
.premium-select-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.premium-select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.premium-select-btn::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.5s ease;
}

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

.premium-sold-btn {
  position: relative;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.premium-sold-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

/* Golden Labubu Special Effects */
.golden-labubu {
  position: relative;
  animation: golden-glow 5s ease-in-out infinite;
}

@keyframes golden-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24;
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 15px 60px rgba(0, 0, 0, 0.2);
    border-color: #f59e0b;
  }
}

.golden-labubu:hover {
  animation: golden-shake 0.5s ease-in-out;
}

@keyframes golden-shake {
  0%, 100% { transform: scale(1.03) translateY(-5px); }
  25% { transform: scale(1.03) translateY(-5px) rotate(1deg); }
  75% { transform: scale(1.03) translateY(-5px) rotate(-1deg); }
}

.fire-glow {
  filter: drop-shadow(0 0 10px #ff6b35);
  animation: fire-pulse 2s ease-in-out infinite;
}

@keyframes fire-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px #ff6b35);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px #ff6b35);
    transform: scale(1.1);
  }
}

.premium-golden-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.premium-golden-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.premium-golden-btn::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 ease;
}

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

/* Collection Header Gradient */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Scale hover effect class */
.hover\:scale-103:hover {
  transform: scale(1.03);
}

/* New Hero Animations */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

@keyframes pulse-golden {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 10px #ffd700);
  }
  50% { 
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px #ffd700);
  }
}

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

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

.animate-float-delayed {
  animation: float-delayed 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-twinkle {
  animation: twinkle 1.5s ease-in-out infinite;
}

/* Timer Animations */
@keyframes pulse-timer {
  0%, 100% { 
    transform: scale(1);
    color: #fff;
  }
  50% { 
    transform: scale(1.05);
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
  }
}

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

.timer-pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-blink {
  animation: blink 1s ease-in-out infinite;
}

/* Button Hover Glow */
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

/* How It Works Cards */
.how-it-works-card {
  position: relative;
  overflow: hidden;
}

.how-it-works-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(147, 51, 234, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.how-it-works-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

/* Mobile Grid Fixes */
@media (max-width: 768px) {
  /* Grid adjustments for mobile */
  .grid-cols-1.sm\\:grid-cols-2.lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    padding: 1rem;
  }

  .product-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .product-card p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .product-card button {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  /* Hero section mobile adjustments */
  .animate-bounce-slow,
  .animate-float-delayed {
    display: none;
  }

  /* Timer mobile optimization */
  #countdown {
    font-size: 2rem !important;
  }

  /* Navigation mobile */
  header {
    padding: 0.75rem 1rem;
  }

  /* Hero text mobile */
  h1 {
    font-size: 3rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens - single column for products */
  .grid-cols-1.sm\\:grid-cols-2.lg\\:grid-cols-4 {
    grid-template-columns: 1fr;
  }

  /* Timer very small screens */
  #countdown {
    font-size: 1.5rem !important;
  }

  /* Hero text very small screens */
  h1 {
    font-size: 2.5rem !important;
  }

  /* Hero button very small screens */
  .hero-cta-button {
    padding: 14px 24px !important;
    font-size: 14px !important;
    border-radius: 40px !important;
  }

  /* Hero header very small screens */
  #home {
    min-height: 40vh !important;
    max-height: 50vh !important;
    height: 40vh !important;
  }

  /* Header container very small screens */
  .header-container {
    padding: 15px 10px;
  }

  .header-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
    margin-bottom: 0.6rem !important;
  }

  .header-content p {
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    margin-bottom: 1.2rem !important;
  }
}

@media (max-width: 640px) {
  .grid-cols-2 {
    gap: 1rem;
  }

  /* How It Works mobile */
  .how-it-works-card {
    padding: 1.5rem;
  }

  /* Reviews mobile */
  .grid-cols-1.md\\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Reviews Section with Real Customer Photos */
.reviews-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff 0%, #f9f9ff 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e0e0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.reviews-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.reviews-section p {
  font-size: clamp(16px, 3vw, 20px);
  color: #666;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.review-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.review-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.review-image {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  transition: transform 0.4s ease;
}

.review-item:hover .review-image {
  transform: scale(1.1);
}

.review-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.review-item:hover .review-overlay {
  transform: translateY(0);
  opacity: 1;
}

.review-text h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.review-text p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.stars {
  font-size: 16px;
}

/* Video Review Section */
.video-review-section {
  text-align: center;
}

.video-review-section h3 {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:```text
0 12px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.review-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 15px;
  }

  .review-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-item {
    max-width: 350px;
    margin: 0 auto;
  }

  .review-image {
    height: 280px;
  }

  .video-container {
    max-width: 100%;
  }

  .review-overlay {
    position: static;
    background: rgba(0, 0, 0, 0.8);
    transform: none;
    opacity: 1;
    margin-top: -60px;
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .review-gallery {
    grid-template-columns: 1fr;
  }

  .review-item {
    max-width: 100%;
  }

  .review-image {
    height: 250px;
  }
}

/* Image Container for Ribbon */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Sold Out Ribbon */
.sold-out-ribbon {
  position: absolute;
  top: 15px;
  left: -35px;
  background-color: #FF4D4F;
  color: white;
  padding: 8px 45px;
  transform: rotate(-45deg);
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(255, 77, 79, 0.4);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sold Out Card Effect */
.sold-out-card {
  opacity: 0.85;
  filter: grayscale(0.3);
}

.sold-out-card:hover {
  opacity: 0.9;
  filter: grayscale(0.2);
}

/* Trust Badges Animation */
.trust-badge {
  transition: all 0.3s ease;
}

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

/* FAQ Styling */
.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #8b5cf6;
}

.faq-answer {
  transition: all 0.3s ease;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #8b5cf6, #ec4899);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile FAQ */
@media (max-width: 768px) {
  .faq-item {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* Product Card Styles */
.product-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 350px;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #a855f7, #ec4899, #3b82f6, #a855f7);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
  opacity: 0.1;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto 20px auto;
}

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

.product-card h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #1f2937, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

.order-btn {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-btn::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 ease;
}

.order-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.order-btn:active {
  transform: translateY(-1px);
}

/* Sold Out Button */
.sold-out-btn {
  background: #9ca3af;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  cursor: not-allowed;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.sold-out-btn:hover {
  background: #9ca3af;
  transform: none;
  box-shadow: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .product-card {
    max-width: 320px;
    padding: 25px;
    margin: 0 15px;
  }

  .product-card h3 {
    font-size: 1.5rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }

  .order-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    max-width: 100%;
    padding: 20px;
    margin: 0 10px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.25rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .order-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* AOS Custom Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Payment Icons Styles */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 28px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@media (max-width: 480px) {
  .payment-icons {
    gap: 8px;
    padding: 15px 0;
  }
  
  .payment-icons img {
    height: 24px;
  }
}