/** Shopify CDN: Minification failed

Line 1371:21 Unexpected "/"

**/
/* Smart Ring Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #ffffff;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Advanced Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

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

.animate-rotate-slow {
  animation: rotateSlow 20s linear infinite;
}

.animate-bounce-subtle {
  animation: bounceSubtle 2s ease-in-out infinite;
}

.stagger-animation {
  animation-delay: var(--delay, 0s);
}

/* Keyframe Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    transform: scale(1.02);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceSubtle {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Hero Section Styles - Enhanced with modern animations */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 15%, #2d1b69 35%, #1e3a8a 55%, #0f172a 75%, #020617 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease-in-out infinite;
  margin-bottom: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.8) 0%, transparent 100%);
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 40% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 45%);
  animation: gradientShift 12s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.8;
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateY(8px);
  opacity: 0.3;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 15%, #e2e8f0 30%, #cbd5e1 50%, #94a3b8 70%, #64748b 85%, #475569 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.02;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.2), 0 0 120px rgba(59, 130, 246, 0.1);
  animation: titleGlow 6s ease-in-out infinite alternate;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 40px rgba(59, 130, 246, 0.2));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.3));
    transform: scale(1.01);
  }
}

.hero-title-highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 15%, #7c3aed 30%, #9333ea 45%, #c026d3 60%, #db2777 75%, #ec4899 90%, #f97316 100%);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShift 8s ease-in-out infinite;
  display: block;
  margin-top: 0.5rem;
  position: relative;
  filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
}

@keyframes rainbowShift {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
  }
  25% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.4));
  }
  50% {
    background-position: 100% 100%;
    filter: drop-shadow(0 0 25px rgba(192, 38, 211, 0.4));
  }
  75% {
    background-position: 0% 100%;
    filter: drop-shadow(0 0 25px rgba(236, 72, 153, 0.4));
  }
}

.hero-subtitle {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 30%, rgba(226, 232, 240, 0.85) 70%, rgba(203, 213, 225, 0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3.5rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.4rem 3rem;
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transform-style: preserve-3d;
  will-change: transform;
  backdrop-filter: blur(20px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-cta.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 20%, #7c3aed 40%, #9333ea 60%, #c026d3 80%, #ec4899 100%);
  background-size: 200% 200%;
  animation: gradientMove 4s ease-in-out infinite;
  box-shadow: 
    0 15px 40px rgba(59, 130, 246, 0.5),
    0 5px 20px rgba(124, 58, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 60px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

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

.hero-cta.primary:hover {
  transform: translateY(-6px) scale(1.08) rotateX(8deg);
  box-shadow: 
    0 30px 60px rgba(59, 130, 246, 0.8),
    0 10px 30px rgba(124, 58, 237, 0.5),
    0 0 80px rgba(59, 130, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
  animation: pulseGlow 1.5s infinite, gradientMove 2s ease-in-out infinite;
  filter: brightness(1.1) saturate(1.2);
}

.hero-cta.secondary:hover {
  transform: translateY(-6px) scale(1.08) rotateX(8deg);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 
    0 25px 50px rgba(255, 255, 255, 0.15),
    0 10px 25px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
}

@keyframes pulseGlow {
  0%, 100% {
    filter: brightness(1.1) saturate(1.2) drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  }
  50% {
    filter: brightness(1.2) saturate(1.4) drop-shadow(0 0 40px rgba(59, 130, 246, 0.8));
  }
}

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

/* Features Section */
.smart-ring-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.smart-ring-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(102, 126, 234, 0.2);
}

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

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.feature-icon {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
  transform: translateY(-2px);
}

.feature-description {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
  color: #2d3748;
}

/* Gallery Section */
.smart-ring-gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.smart-ring-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.gallery-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #1a202c 0%, #667eea 50%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gallery-subtitle {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.125rem, 2.25vw, 1.5rem);
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.005em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(102, 126, 234, 0.2);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Product Section */
.smart-ring-product {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Order Section */
.smart-ring-order {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.smart-ring-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.order-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.order-header {
  margin-bottom: 3rem;
}

.order-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.order-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  opacity: 0.9;
}

.order-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.order-button {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

.order-button:hover {
  transform: translateY(-5px) scale(1.03) rotateX(3deg);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6), 0 0 40px rgba(102, 126, 234, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  animation: bounceSubtle 0.6s ease-out;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-text {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-section {
    padding: 4rem 0;
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
  }
  
  .hero-buttons {
    gap: 1rem;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .order-form {
    margin: 0 1rem;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
    min-height: 60vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.125rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
    margin: 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .order-form {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .order-form h2 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .pricing-card {
    margin: 0;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-buttons {
    padding: 0 0.5rem;
  }
  
  .hero-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: clamp(1.125rem, 4vw, 1.35rem);
    margin-bottom: 0.75rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .order-form {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }
  
  .order-button {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  
  .pricing-card-price {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
     font-size: clamp(1rem, 3vw, 1.125rem);
     margin-bottom: 2.5rem;
     padding: 0 0.5rem;
   }
}

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

/* Modern UI Components */
/* Floating Action Button */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.floating-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Progress Indicator */
.progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 0 2px 2px 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #1e293b;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #1e293b;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  max-width: 300px;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast.warning {
  border-left: 4px solid #f59e0b;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.tooltip::after {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.badge--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.badge--warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.badge--error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

/* Enhanced/* Typography Improvements */
p, .text-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: -0.005em;
}

* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
} Loading Animation */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* Hover Effects for Interactive Elements */
a, button, .clickable {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover, button:hover, .clickable:hover {
  transform: translateY(-2px);
}

/* Focus States for Accessibility */
input:focus, select:focus, button:focus, a:focus {
  outline: 2px solid rgba(102, 126, 234, 0.5);
  outline-offset: 2px;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }
  
  .order-form {
    padding: 2rem 1rem;
  }
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

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

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* Smart Ring Features Section */
.sr-features {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 15%, #2d1b69 35%, #1e3a8a 55%, #0f172a 75%, #020617 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease-in-out infinite;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.sr-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8) 0%, transparent 100%);
  z-index: 2;
}

.sr-features__container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 750px) {
  .sr-features {
    padding: 5rem 0;
  }
  
  .sr-features__container {
    padding: 0 5rem;
  }
}

.sr-features__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.sr-features__title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2rem);
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

@media screen and (min-width: 750px) {
  .sr-features__title {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

.sr-features__desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 56rem;
  margin: 0 auto;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.sr-features__desc p {
  margin: 0;
}

.sr-features__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 750px) {
  .sr-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (min-width: 990px) {
  .sr-features__grid {
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 3rem;
  }
}

.sr-features__card {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: var(--buttons-radius-outset);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) rgba(0, 0, 0, 0.3);
  transition: transform var(--duration-short) ease, box-shadow var(--duration-short) ease;
}

.sr-features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.sr-features__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--buttons-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.sr-features__icon-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.sr-features__icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sr-features__item-title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

.sr-features__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  margin-bottom: 1rem;
  flex-grow: 1;
}

.sr-features__text p {
  margin: 0;
}

.sr-features__cta {
  margin-top: auto;
  margin-bottom: 0;
}

/* Usunięto sr-features__link, używamy klas linków z motywu */

.sr-features__bottom {
  text-align: center;
  margin-top: 2.5rem;
}

/* Usunięto sr-features__btn, używamy klas przycisków z motywu */

/* Usunięto pozostałe style sr-features__btn, używamy klas przycisków z motywu */

/* Usunięto style focus dla sr-features__btn, używamy klas przycisków z motywu */

.feature-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 25%, #7c3aed 50%, #c026d3 75%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #3b82f6, #7c3aed, #ec4899);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon-emoji {
  font-size: 2.25rem;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-emoji {
  transform: scale(1.1);
}

.feature-icon-image {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-image {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-text {
  color: #cbd5e1;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-text {
  color: #e2e8f0;
  opacity: 1;
}

.feature-cta {
  margin-top: auto;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.feature-link:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.feature-link-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.feature-link:hover .feature-link-icon {
  transform: translateX(4px);
}

.features-bottom-cta {
  text-align: center;
}



/* Interactive Button Effects */
.hero-cta:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.hero-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Ripple Effect */
.hero-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta:active::after {
  width: 300px;
  height: 300px;
}

.order-button:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.order-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.5);
}



.pricing-cta:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.pricing-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Magnetic Effect for Buttons */
.hero-cta, .order-button, .features-btn, .pricing-cta {
  cursor: pointer;
  user-select: none;
}

/* Loading State Animation */
.button-loading {
  position: relative;
  pointer-events: none;
}

.button-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Fix for white gap between sections */
section {
  margin-top: -5px !important;
  position: relative;
  z-index: 1;
}

body {
  overflow-x: hidden;
}

/* Section Titles */
.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a202c;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.125rem, 2.25vw, 1.5rem);
  text-align: center;
  margin-bottom: 4rem;
  color: #4a5568;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* Gallery Section Styles */
.gallery-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f172a 75%, #020617 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  margin-top: -5px;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Shipping Banner */
.shipping-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shipping-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.shipping-icon-green {
  color: #10b981;
}

.shipping-icon-blue {
  color: #3b82f6;
}

.shipping-icon-purple {
  color: #8b5cf6;
}

.shipping-text {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowShift 8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.gallery-description {
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(226, 232, 240, 0.8) 50%, rgba(203, 213, 225, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Main Image Section */
.gallery-main-wrapper {
  position: relative;
}

.gallery-main-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(102, 126, 234, 0.05) 100%);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: floatingProduct 6s ease-in-out infinite;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(102, 126, 234, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  filter: brightness(1) contrast(1.05) saturate(1.1);
}

.gallery-main-image:hover {
  transform: rotateY(5deg) rotateX(2deg) translateZ(20px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 15px 50px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(102, 126, 234, 0.4);
}

.gallery-main-image:hover .main-product-image {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.zoom-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.zoom-icon {
  width: 1rem;
  height: 1rem;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.placeholder-icon {
  width: 6rem;
  height: 6rem;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.thumbnail-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(102, 126, 234, 0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(102, 126, 234, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.thumbnail-item:hover {
  border-color: rgba(102, 126, 234, 0.6);
  transform: translateY(-4px) rotateY(3deg) rotateX(1deg) scale(1.05);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.thumbnail-item.active {
  border-color: rgba(102, 126, 234, 0.8);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 0 0 2px rgba(102, 126, 234, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(102, 126, 234, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.video-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

/* Gallery Hint */
.gallery-hint {
  margin-top: 1rem;
  text-align: center;
}

.hint-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hint-icon {
  width: 1rem;
  height: 1rem;
  color: rgba(102, 126, 234, 0.8);
}

/* Product Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-info {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.08) 30%,
    rgba(59, 130, 246, 0.06) 70%,
    rgba(124, 58, 237, 0.04) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Premium glassmorphism overlay */
.product-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 30%,
    rgba(59, 130, 246, 0.08) 60%,
    transparent 100%);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.8;
}

/* Neumorphism border effect */
.product-info::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 25%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0.15) 100%);
  border-radius: calc(2rem + 1px);
  z-index: -1;
  opacity: 0.7;
}

.product-title {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  animation: titleGlow 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
}

/* Product Reviews */
.product-reviews {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stars-container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
}

.star-filled {
  color: #fbbf24;
}

.star-half {
  color: #fbbf24;
}

.star-empty {
  color: #d1d5db;
}

.rating-text {
  color: rgba(255, 255, 255, 0.8);
}

.rating-score {
  font-weight: 500;
  color: #ffffff;
}

.review-count {
  font-size: 0.875rem;
}

.reviews-link {
  font-size: 0.875rem;
  color: rgba(102, 126, 234, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.reviews-link:hover {
  color: rgba(102, 126, 234, 1);
  text-decoration: underline;
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1440px) {
  .container, .gallery-container, .features-container {
    max-width: 1400px;
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/* Desktop */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container, .gallery-container, .features-container {
    max-width: 1200px;
    padding: 0 1.5rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
  .container, .gallery-container, .features-container {
    padding: 0 1.25rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .gallery-grid {
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container, .gallery-container, .features-container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .shipping-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .shipping-item {
    justify-content: center;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container, .gallery-container, .features-container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .gallery-title {
    font-size: 1.75rem;
  }
  
  .product-title {
    font-size: 1.75rem;
  }
  
  .thumbnail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Product details mobile */
  .product-reviews {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .stars-container {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-title {
    font-size: 2rem;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .gallery-title {
    font-size: 1.75rem;
  }
  
  .product-title {
    font-size: 1.75rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .thumbnail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .shipping-banner {
    padding: 1rem;
  }
  
  .zoom-hint {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .features-title {
    font-size: 2.25rem;
  }
  
  .gallery-title {
    font-size: 2.25rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
  }
  
  .thumbnail-item:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  }
  
  .main-product-image:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .thumbnail-item {
    min-height: 60px;
  }
  
  .feature-link {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
  }
  
  .features-btn {
    padding: 1rem 2rem;
    min-height: 48px;
  }
  
  /* Pricing Section Mobile */
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-container {
    padding: 0 15px;
  }

  .pricing-title {
    font-size: 2.2rem;
  }

  .pricing-description {
    font-size: 1.1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card--highlighted {
    transform: none;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .pricing-amount {
    font-size: 2.8rem;
  }

  .pricing-additional-info {
    padding: 30px 20px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.pricing-card--highlighted {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.pricing-card--premium {
  border-color: rgba(147, 51, 234, 0.5);
}

.pricing-card--pro {
  border-color: rgba(34, 197, 94, 0.5);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 30px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 15px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-badge--premium {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.pricing-badge--pro {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.pricing-plan-name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pricing-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.pricing-currency {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.pricing-amount {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.pricing-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.pricing-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pricing-compare-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-compare-price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pricing-card-body {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.pricing-plan-description {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

.pricing-card-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-cta {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
}

.pricing-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 25px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  animation: pulseGlow 1.5s ease-in-out infinite;
}

.pricing-cta--premium {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.pricing-cta--premium:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}

.pricing-cta--pro {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.pricing-cta--pro:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.pricing-guarantee-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

.pricing-additional-info {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.pricing-info-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.pricing-payment-methods {
  margin-top: 20px;
}

.pricing-payment-title {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-weight: 500;
}

.pricing-payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.payment-icon:hover {
  color: #9dbcf9;
}

/* ===== ENHANCED PRICING SECTION ANIMATIONS ===== */

/* Scroll-based animations for pricing section */
@keyframes pricingFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pricingCardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes featureCheckIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.3);
  }
}

/* Enhanced pricing section with animations */
.pricing-section {
  animation: pricingFadeIn 1s ease-out;
}

.pricing-section::before {
  animation: gradientShift 8s ease-in-out infinite;
}

/* Enhanced pricing cards with staggered animations */
.pricing-card {
  animation: pricingCardSlideIn 0.8s ease-out;
  animation-fill-mode: both;
  will-change: transform, opacity;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Enhanced highlighted card with glow effect */
.pricing-card--highlighted {
  animation: pricingCardSlideIn 0.8s ease-out, cardGlow 3s ease-in-out infinite;
  animation-delay: 0.2s, 1s;
}

/* Enhanced pricing badge with float animation */
.pricing-badge {
  animation: badgeFloat 3s ease-in-out infinite;
  animation-delay: 1s;
}

/* Enhanced price amount with count-up effect */
.pricing-amount {
  animation: priceCountUp 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Enhanced features with staggered check-in animation */
.pricing-feature {
  animation: featureCheckIn 0.6s ease-out;
  animation-fill-mode: both;
}

.pricing-feature:nth-child(1) { animation-delay: 0.8s; }
.pricing-feature:nth-child(2) { animation-delay: 0.9s; }
.pricing-feature:nth-child(3) { animation-delay: 1.0s; }
.pricing-feature:nth-child(4) { animation-delay: 1.1s; }
.pricing-feature:nth-child(5) { animation-delay: 1.2s; }
.pricing-feature:nth-child(6) { animation-delay: 1.3s; }

/* Enhanced pricing CTA with pulse effect */
.pricing-cta {
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s infinite;
  animation-delay: 1.5s;
}

.pricing-cta::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;
}

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

/* Enhanced hover effects for pricing cards */
.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.pricing-card:hover .pricing-amount {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pricing-card:hover .pricing-feature-icon {
  transform: none;
  transition: none;
}

/* Enhanced payment methods with hover effects */
.payment-icon {
  transition: color 0.2s ease;
}

.payment-icon:hover {
  color: #9dbcf9;
  filter: none;
}

/* Mobile optimizations for pricing section */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card--highlighted {
    transform: none;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
  }
  
  .pricing-title {
    font-size: 2.5rem;
  }
  
  .pricing-amount {
    font-size: 3rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .pricing-amount,
  .pricing-feature,
  .pricing-badge,
  .pricing-cta {
    animation: none;
  }
  
  .pricing-card:hover {
    transform: none;
  }
}

/* ===== GLOBAL MICRO-INTERACTIONS & SUBTLE ANIMATIONS ===== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
*:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Global button micro-interactions */
button, .btn, [role="button"] {
  transition: all 0.2s ease;
  cursor: pointer;
}

button:hover, .btn:hover, [role="button"]:hover {
  transform: translateY(-1px);
}

button:active, .btn:active, [role="button"]:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* Enhanced link interactions */
a {
  transition: all 0.2s ease;
  position: relative;
}

a:not(.btn):not(.hero-cta):not(.pricing-cta):not(.features-btn):hover {
  color: #3b82f6;
}

/* Subtle hover effect for navigation links */
nav a, .navigation a {
  position: relative;
  overflow: hidden;
}

nav a::before, .navigation a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

nav a:hover::before, .navigation a:hover::before {
  width: 100%;
}

/* Enhanced form input interactions */
input, textarea, select {
  transition: all 0.2s ease;
  border-radius: 8px;
}

input:focus, textarea:focus, select:focus {
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Subtle loading animation for images */
img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* Enhanced card hover effects */
.card, .product-card, .feature-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover, .product-card:hover, .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Micro-interaction for icons */
.icon {
  transition: transform 0.2s ease;
}

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

/* Subtle pulse animation for important elements */
@keyframes subtlePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

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

/* Icon size normalization for inline SVG assets */
svg.icon-checkmark,
svg.icon-tick,
svg.icon-lock,
svg.icon-padlock {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* Enhanced tooltip-like interactions */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 1000;
  animation: fadeInUp 0.2s ease;
}

/* Smooth transitions for section reveals */
.section {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Enhanced scroll indicator */
.scroll-indicator {
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Micro-interaction for quantity selectors */
.quantity-selector button {
  transition: all 0.15s ease;
}

.quantity-selector button:hover {
  background: #3b82f6;
  color: white;
  transform: scale(1.1);
}

/* Enhanced dropdown interactions */
.dropdown {
  transition: all 0.2s ease;
}

.dropdown:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Subtle animation for loading states */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Enhanced checkbox and radio interactions */
input[type="checkbox"], input[type="radio"] {
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked, input[type="radio"]:checked {
  transform: scale(1.1);
}

/* Micro-interaction for badges and tags */
.badge, .tag {
  transition: all 0.2s ease;
  cursor: pointer;
}

.badge:hover, .tag:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Enhanced progress bar animations */
.progress-bar {
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

/* Subtle animation for notification elements */
.notification, .alert {
  animation: slideInRight 0.3s ease;
}

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

/* Enhanced modal interactions */
.modal {
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Micro-interactions for social media icons */
.social-icon {
  transition: all 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px) rotate(5deg);
  filter: brightness(1.2);
}

/* Enhanced search input interactions */
.search-input {
  transition: all 0.3s ease;
}

.search-input:focus {
  width: 120%;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Subtle animation for star ratings */
.star-rating .star {
  transition: all 0.2s ease;
}

.star-rating .star:hover {
  transform: scale(1.2);
  color: #fbbf24;
}

/* Enhanced accordion interactions */
.accordion-header {
  transition: all 0.2s ease;
}

.accordion-header:hover {
  background: rgba(59, 130, 246, 0.05);
}

/* Micro-interaction for copy-to-clipboard */
.copy-button {
  transition: all 0.2s ease;
}

.copy-button:active {
  transform: scale(0.95);
}

.copy-button.copied {
  background: #22c55e;
  color: white;
}

/* Enhanced table row interactions */
table tr {
  transition: background-color 0.2s ease;
}

table tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

/* Subtle animation for page transitions */
.page-transition {
  animation: pageSlideIn 0.5s ease;
}

@keyframes pageSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile-specific micro-interactions */
@media (max-width: 768px) {
  /* Reduce animation intensity on mobile */
  .card:hover, .product-card:hover, .feature-card:hover {
    transform: translateY(-2px);
  }
  
  button:hover, .btn:hover {
    transform: none;
  }
  
  /* Enhanced touch interactions */
  button:active, .btn:active {
    transform: scale(0.98);
  }
}

/* Accessibility: Respect user preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Enhanced Smart Ring Extended Product Styles */
.pf-sec {
  position: relative;
  overflow: hidden;
}

.pf-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  z-index: 0;
}

.pf-wrap {
  position: relative;
  z-index: 1;
}

.pf-hero {
  position: relative;
  padding: 2rem 0;
}

.pf-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563EB, transparent);
  animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.3; width: 100px; }
  50% { opacity: 1; width: 200px; }
}

.pf-hero-title {
  background: linear-gradient(135deg, #1e293b 0%, #2563EB 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite;
  background-size: 200% 200%;
}

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

.pf-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pf-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.6s ease;
}

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

.pf-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.pf-card-dark {
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-card-dark:hover {
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.pf-emoji {
  display: inline-block;
  animation: emojiFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
}

.pf-spec {
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.pf-spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.pf-cta-box {
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.95) 0%, rgba(37, 99, 235, 0.1) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.pf-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  animation: ctaRotate 8s linear infinite;
}

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

.pf-btn {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.pf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  border-color: #2563EB;
}

/* Scroll-triggered animations */
.pf-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-anim.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced grid animations */
.pf-grid .pf-card:nth-child(1) { animation-delay: 0.1s; }
.pf-grid .pf-card:nth-child(2) { animation-delay: 0.2s; }
.pf-grid .pf-card:nth-child(3) { animation-delay: 0.3s; }
.pf-grid .pf-card:nth-child(4) { animation-delay: 0.4s; }
.pf-grid .pf-card:nth-child(5) { animation-delay: 0.5s; }
.pf-grid .pf-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Gallery Styles */
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.03), transparent);
  animation: galleryRotate 20s linear infinite;
  pointer-events: none;
}

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

.shipping-banner {
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.8s ease-out;
}

.shipping-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

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

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.shipping-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.shipping-item:nth-child(1) { animation-delay: 0.2s; }
.shipping-item:nth-child(2) { animation-delay: 0.4s; }
.shipping-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.shipping-item:hover .shipping-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.gallery-main-image {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.gallery-main-image:hover::before {
  transform: translateX(100%);
}

.gallery-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.4);
}

.main-product-image {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

.main-product-image:hover {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}

.zoom-hint {
  animation: pulseGlow 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4), 0 0 20px rgba(37, 99, 235, 0.2);
  }
}

.zoom-hint:hover {
  transform: scale(1.05);
  background: rgba(37, 99, 235, 0.2);
}

.thumbnail-gallery {
  animation: slideInFromBottom 0.8s ease-out 0.3s both;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.thumbnail-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-item:hover::after {
  opacity: 1;
}

.thumbnail-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
}

.thumbnail-item.active {
  animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5), 0 8px 24px rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.8), 0 12px 32px rgba(37, 99, 235, 0.6);
  }
}

.thumbnail-image {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.thumbnail-item:hover .thumbnail-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.video-overlay {
  transition: all 0.3s ease;
}

.thumbnail-item:hover .video-overlay {
  background: rgba(37, 99, 235, 0.4);
}

.video-icon {
  transition: all 0.3s ease;
}

.thumbnail-item:hover .video-icon {
  transform: scale(1.2);
  color: #ffffff;
}

/* Product Details Enhancements */
.product-details {
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.color-option {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.color-option::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.color-option:hover {
  transform: translateY(-4px) scale(1.1) rotateY(5deg);
  border-color: rgba(102, 126, 234, 0.6);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.color-option:hover::before {
  width: 100%;
  height: 100%;
}

.color-option.selected {
  transform: scale(1.05);
  border-color: rgba(102, 126, 234, 0.8);
  animation: colorPulse 3s ease-in-out infinite;
  box-shadow: 
    0 0 0 3px rgba(102, 126, 234, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 3px 12px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes colorPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.5);
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .shipping-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-grid {
    gap: 1.5rem;
  }
}

/* Enhanced Features Section with Advanced Animations and Scroll Effects */

/* Scroll-based animations for features section */
.features-section {
  opacity: 0;
  transform: translateY(50px);
  animation: sectionFadeIn 1s ease-out forwards;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for feature cards */
.feature-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: featureCardFadeIn 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced icon animations */
.feature-icon {
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  animation: iconRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

@keyframes iconRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Floating animation for icons */
.feature-icon-emoji,
.feature-icon-image {
  animation: iconFloat 3s ease-in-out infinite;
}

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

/* Enhanced card hover effects */
.feature-card {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.25),
      0 0 40px rgba(59, 130, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.25),
      0 0 60px rgba(59, 130, 246, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* Text reveal animation */
.feature-title {
  overflow: hidden;
  position: relative;
}

.feature-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: left 0.8s ease;
}

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

/* Enhanced button animations */
.features-btn {
  position: relative;
  overflow: hidden;
}

.features-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
}

.features-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
  .features-section {
    animation-play-state: paused;
  }
  
  .features-section.animate-in {
    animation-play-state: running;
  }
  
  .feature-item {
    animation-play-state: paused;
  }
  
  .feature-item.animate-in {
    animation-play-state: running;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .features-section,
  .feature-item,
  .feature-icon::after,
  .feature-icon-emoji,
  .feature-icon-image,
  .feature-card,
  .feature-title::before,
  .hero-section,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .ring-animation,
  .hero-background,
  .hero-video {
    animation: none !important;
    transition: none !important;
  }
}

/* Enhanced focus states for keyboard navigation */
*:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.btn:focus-visible,
.hero-cta:focus-visible,
.order-button:focus-visible,
.pricing-cta:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1a202c;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card {
    border: 2px solid #1a202c;
  }
  
  .hero-title,
  .feature-title {
    color: #1a202c !important;
    background: none !important;
    -webkit-text-fill-color: #1a202c !important;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile optimizations for features */
@media (max-width: 768px) {
  .features-section {
    padding: 4rem 0;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
  
  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .feature-icon-emoji {
    font-size: 1.75rem;
  }
  
  .feature-icon-image {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Enhanced Hero Section with Advanced Parallax and Animations */

/* Parallax background effects */
.hero-section {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-background {
  transform: translateZ(-1px) scale(1.1);
  will-change: transform;
}

/* Enhanced video background with parallax */
.hero-video {
  transform: scale(1.15) translateY(0px) translateZ(-2px);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Dynamic gradient overlay */
.hero-overlay {
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.8) 100%);
  animation: overlayShift 12s ease-in-out infinite;
}

@keyframes overlayShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
      linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.8) 100%);
  }
  50% {
    background: 
      radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
      linear-gradient(135deg, rgba(15, 15, 35, 0.7) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(22, 33, 62, 0.7) 100%);
  }
}

/* Enhanced title animations */
.hero-title {
  transform: translateZ(50px);
  text-shadow: 
    0 0 40px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(59, 130, 246, 0.2),
    0 0 120px rgba(124, 58, 237, 0.1);
  animation: titleFloat 6s ease-in-out infinite, titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleFloat {
  0%, 100% {
    transform: translateZ(50px) translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateZ(50px) translateY(-10px) rotateX(2deg);
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 
      0 0 40px rgba(255, 255, 255, 0.1),
      0 0 80px rgba(59, 130, 246, 0.2),
      0 0 120px rgba(124, 58, 237, 0.1);
  }
  100% {
    text-shadow: 
      0 0 60px rgba(255, 255, 255, 0.2),
      0 0 120px rgba(59, 130, 246, 0.4),
      0 0 180px rgba(124, 58, 237, 0.2);
  }
}

/* Enhanced highlight animation */
.hero-title-highlight {
  position: relative;
  overflow: hidden;
}

.hero-title-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced subtitle with typewriter effect */
.hero-subtitle {
  transform: translateZ(30px);
  position: relative;
  overflow: hidden;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  animation: blink 1s infinite;
}

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

/* Enhanced button effects */
.hero-cta {
  transform: translateZ(20px);
  position: relative;
}

.hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  border-radius: inherit;
}

.hero-cta:hover::after {
  transform: translateX(100%);
}

/* Floating particles effect */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(124, 58, 237, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(59, 130, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particlesFloat 20s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(-100px) translateX(50px);
  }
}

/* Ring animation enhancements */
.ring-animation {
  transform: translateZ(100px);
  animation: ringFloat 8s ease-in-out infinite;
}

@keyframes ringFloat {
  0%, 100% {
    transform: translateZ(100px) translateY(-50%) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateZ(100px) translateY(-50%) rotateY(15deg) rotateX(5deg);
  }
  50% {
    transform: translateZ(100px) translateY(-50%) rotateY(0deg) rotateX(-5deg);
  }
  75% {
    transform: translateZ(100px) translateY(-50%) rotateY(-15deg) rotateX(5deg);
  }
}

/* Scroll indicator enhancements */
.scroll-indicator {
  transform: translateZ(10px);
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateZ(10px) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateZ(10px) scale(1.1);
  }
}

/* Mouse movement parallax effect */
@media (hover: hover) and (pointer: fine) {
  .hero-content {
    transition: transform 0.1s ease-out;
  }
}

@keyframes floatingProduct {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-8px) rotateY(1deg);
  }
  50% {
    transform: translateY(-4px) rotateY(0deg);
  }
  75% {
    transform: translateY(-12px) rotateY(-1deg);
  }
}

/* Accessibility and performance optimizations */
@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-background,
  .hero-video,
  .hero-overlay,
  .hero-title,
  .hero-title-highlight,
  .hero-subtitle,
  .hero-cta,
  .ring-animation,
  .scroll-indicator,
  .gallery-main-image {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .hero-section::before,
  .hero-section::after,
  .hero-title-highlight::before,
  .hero-subtitle::after,
  .hero-cta::after {
    display: none !important;
  }
}

/* Mobile optimizations for hero */
@media (max-width: 768px) {
  .hero-section {
    perspective: none;
  }
  
  .hero-background,
  .hero-video,
  .hero-title,
  .hero-subtitle,
  .hero-cta {
    transform: none !important;
  }
  
  .hero-section::after {
    display: none;
  }
  
  .ring-animation {
    display: none;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
}

/* Premium Morphing Animations */
@keyframes morphingGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(59, 130, 246, 0.3),
      0 0 40px rgba(59, 130, 246, 0.2),
      0 0 60px rgba(59, 130, 246, 0.1);
    filter: hue-rotate(0deg);
  }
  25% {
    box-shadow: 
      0 0 25px rgba(124, 58, 237, 0.4),
      0 0 50px rgba(124, 58, 237, 0.3),
      0 0 75px rgba(124, 58, 237, 0.2);
    filter: hue-rotate(90deg);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(236, 72, 153, 0.4),
      0 0 60px rgba(236, 72, 153, 0.3),
      0 0 90px rgba(236, 72, 153, 0.2);
    filter: hue-rotate(180deg);
  }
  75% {
    box-shadow: 
      0 0 25px rgba(34, 197, 94, 0.4),
      0 0 50px rgba(34, 197, 94, 0.3),
      0 0 75px rgba(34, 197, 94, 0.2);
    filter: hue-rotate(270deg);
  }
}

@keyframes liquidMorph {
  0%, 100% {
    border-radius: 2rem;
    transform: scale(1) rotate(0deg);
  }
  25% {
    border-radius: 3rem 1rem 2rem 1.5rem;
    transform: scale(1.02) rotate(0.5deg);
  }
  50% {
    border-radius: 1.5rem 2.5rem 1rem 3rem;
    transform: scale(1.01) rotate(-0.5deg);
  }
  75% {
    border-radius: 2.5rem 1.5rem 3rem 1rem;
    transform: scale(1.03) rotate(0.3deg);
  }
}

@keyframes breathingEffect {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes holographicShift {
  0%, 100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg) saturate(100%);
  }
  25% {
    background-position: 100% 50%;
    filter: hue-rotate(90deg) saturate(120%);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg) saturate(140%);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg) saturate(120%);
  }
}

/* Apply premium effects to key elements - toned down for cleaner UX */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.feature-card:hover {
  animation: none;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  filter: none;
}

.product-info {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-info:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.gallery-main-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.gallery-main-image:hover {
  animation: none;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
  filter: none;
}

/* Inline SVG size normalization (fallback when no width/height attrs) */
.shipping-icon,
.zoom-icon,
.video-icon,
.hint-icon,
.star {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* Ensure rating stars are consistent */
.stars-container .star {
  width: 16px;
  height: 16px;
}

/* Tailwind-like utility classes (fallback) */
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

/* Spacing utils used alongside icons */
.mr-1\.5 { margin-right: 0.375rem; }
.-ml-0\.5 { margin-left: -0.125rem; }

/* Fix richtext paragraphs and feature text spacing in features section */
.features-description p {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(226, 232, 240, 0.85) 50%, rgba(203, 213, 225, 0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.feature-text p {
  margin: 0;
}