:root {
  --bg: #0a0a0f;
  --surface: #1a1a2e;
  --surface-light: #2a2a3e;
  --text: #e4e4e7;
  --text-light: #f4f4f5;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(0, 0, 0, 0.5);
  --primary: #ff6b6b; /* coral red */
  --primary-600: #ff5252;
  --primary-700: #e53935;
  --secondary: #4ecdc4; /* teal */
  --accent: #ffe66d; /* sunny yellow */
  --purple: #a8e6cf; /* mint green */
  --pink: #ff8a80; /* light coral */
  --orange: #ffb74d; /* warm orange */
  --blue: #64b5f6; /* sky blue */
  --green: #81c784; /* light green */
  --ring: rgba(255, 107, 107, 0.4);
  --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffb3b3 100%);
  --gradient-2: linear-gradient(135deg, #4ecdc4 0%, #7fdbda 50%, #b2f5f3 100%);
  --gradient-3: linear-gradient(135deg, #ffe66d 0%, #fff176 50%, #fff59d 100%);
  --gradient-4: linear-gradient(135deg, #a8e6cf 0%, #c8f7c5 50%, #e8f5e8 100%);
  --gradient-5: linear-gradient(135deg, #ff8a80 0%, #ffab91 50%, #ffccbc 100%);
  --gradient-6: linear-gradient(135deg, #64b5f6 0%, #90caf9 50%, #bbdefb 100%);
  --gradient-7: linear-gradient(135deg, #81c784 0%, #a5d6a7 50%, #c8e6c9 100%);
  --gradient-8: linear-gradient(135deg, #ffb74d 0%, #ffcc80 50%, #ffe0b2 100%);
  --rainbow: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffe66d, #a8e6cf, #ff8a80, #64b5f6, #81c784, #ffb74d);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 107, 107, 0.15), transparent 60%),
    radial-gradient(1000px 500px at 90% -20%, rgba(78, 205, 196, 0.12), transparent 60%),
    radial-gradient(800px 400px at 50% 100%, rgba(255, 230, 109, 0.1), transparent 60%),
    radial-gradient(600px 300px at 20% 80%, rgba(168, 230, 207, 0.08), transparent 60%),
    radial-gradient(400px 200px at 80% 20%, rgba(255, 138, 128, 0.06), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  padding-top: 160px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 230, 109, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 75% 25%, rgba(78, 205, 196, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 25% 75%, rgba(255, 230, 109, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 75% 75%, rgba(168, 230, 207, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255, 138, 128, 0.1) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
  animation: morph 25s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: hue-rotate(0deg);
  }
  25% { 
    transform: scale(1.1) rotate(90deg);
    filter: hue-rotate(90deg);
  }
  50% { 
    transform: scale(0.9) rotate(180deg);
    filter: hue-rotate(180deg);
  }
  75% { 
    transform: scale(1.05) rotate(270deg);
    filter: hue-rotate(270deg);
  }
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(255, 230, 109, 0.1) 50%, rgba(26, 26, 46, 0.95) 100%);
  backdrop-filter: saturate(120%) blur(12px);
  border-bottom: 2px solid transparent;
  border-image: var(--rainbow) 1;
  box-shadow: 0 8px 32px var(--shadow);
  position: fixed;
  width: 100%;
}

/* Special Offer Banner */
.bf-banner {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  background: #000000;
  border-bottom: 3px solid rgba(255, 107, 107, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  z-index: 45;
  animation: slideDown 0.5s ease-out, pulse 3s ease-in-out infinite;
  overflow: hidden;
}

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

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 107, 107, 0.4);
  }
}

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

.bf-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.bf-banner-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bf-emoji {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.bf-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bf-subtitle {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.bf-coupon-box {
  background: #000;
  border: 2px solid rgba(255, 107, 107, 0.9);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  font-family: monospace;
  animation: glow 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
    border-color: rgba(255, 107, 107, 0.9);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
    border-color: rgba(255, 107, 107, 1);
  }
}

.bf-copy-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.bf-copy-btn:hover {
  background: var(--primary-700);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.bf-close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.bf-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-50%) rotate(90deg);
}

.bf-banner.hidden {
  display: none;
}

body.bf-banner-visible {
  padding-top: 160px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--surface);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 1.5rem 0;
  animation: slideUp 0.5s ease-out;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  color: var(--text);
}

.cookie-text p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.cookie-text a {
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-accept {
  background: var(--primary);
  color: white;
}

.cookie-accept:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.cookie-decline {
  background: var(--surface-light);
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-decline:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.lang-toggle-li {
  margin-left: 12px;
}

.lang-toggle {
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.lang-current {
  min-width: 20px;
}

.lang-arrow {
  font-size: 0.8rem;
  opacity: 0.7;
}

.brand {
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.3rem;
  animation: rainbow-shift 3s ease-in-out infinite;
  position: relative;
}

.brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rainbow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.brand:hover::after { transform: scaleX(1); }

@keyframes rainbow-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(180deg); }
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav a:hover::before, .nav a:focus-visible::before {
  opacity: 0.1;
  transform: scale(1);
}

.nav a:hover, .nav a:focus-visible { 
  color: var(--primary-700);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text-light); margin: 4px 0; }

.hero { 
  padding: 96px 0 60px; 
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(255, 230, 109, 0.08) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { text-align: left; }
.hero-image { 
  position: relative;
  animation: none;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--rainbow);
  border-radius: 30px;
  opacity: 0.3;
  animation: none;
  z-index: -1;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-1);
  border-radius: 25px;
  opacity: 0.2;
  animation: none;
  z-index: -1;
}

.hero-image img { 
  width: 100%; 
  height: auto; 
  border-radius: 20px; 
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-image img:hover { 
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(255, 107, 107, 0.4);
}

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

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

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 14px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { color: var(--muted); margin: 0 0 24px; max-width: 100%; }

.cta { display: flex; gap: 12px; justify-content: flex-start; }

.btn {
  appearance: none;
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--text-light);
  background: var(--surface-light);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.btn:hover, .btn:focus-visible { border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 8px 24px var(--shadow-light); }

.btn-primary { 
  background: var(--gradient-1); 
  border: none; 
  color: #fff; 
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  pointer-events: none;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover, .btn-primary:focus-visible { 
  background: var(--gradient-3); 
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.section { padding: 56px 0; }

.section-alt { 
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(78, 205, 196, 0.08) 25%, rgba(255, 230, 109, 0.08) 50%, rgba(168, 230, 207, 0.08) 75%, rgba(255, 138, 128, 0.08) 100%);
  position: relative;
  overflow: hidden;
}
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 230, 109, 0.08) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
}
.section-alt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b6b" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 18px; 
  position: relative;
  z-index: 1;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before { transform: scaleX(1); }
.card:hover { 
  transform: translateY(-8px) rotate(1deg); 
  box-shadow: 0 20px 60px var(--shadow-light);
  animation: hoverFloat 2s ease-in-out infinite;
}

@keyframes hoverFloat {
  0%, 100% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

.card:nth-child(1)::before { background: var(--gradient-1); }
.card:nth-child(2)::before { background: var(--gradient-2); }
.card:nth-child(3)::before { background: var(--gradient-3); }
.card:nth-child(4)::before { background: var(--gradient-4); }
.card:nth-child(5)::before { background: var(--gradient-5); }
.card:nth-child(6)::before { background: var(--gradient-6); }
.card:nth-child(7)::before { background: var(--gradient-7); }
.card:nth-child(8)::before { background: var(--gradient-8); }

.card img { 
  display: block; 
  width: 100%; 
  height: auto; 
  border-radius: 12px; 
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.card:hover img { transform: scale(1.02); }

/* About section with gallery */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Steps gallery */
.steps-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { 
  transform: translateY(-10px) rotate(2deg); 
  box-shadow: 0 25px 70px var(--shadow-light);
  animation: hoverFloat 2.5s ease-in-out infinite;
}

.step-card:nth-child(1)::before { background: var(--gradient-1); }
.step-card:nth-child(2)::before { background: var(--gradient-2); }
.step-card:nth-child(3)::before { background: var(--gradient-3); }
.step-card:nth-child(4)::before { background: var(--gradient-4); }
.step-card:nth-child(5)::before { background: var(--gradient-5); }

.step-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.step-card:hover img { transform: scale(1.03); }

/* Product Gallery Styles */
.steps-video {
  margin-top: 28px;
}

.steps-video .video-wrapper {
  position: relative;
}

.steps-video video {
  width: 100%;
  max-height: 70vh;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(0,0,0,0.25), rgba(0,0,0,0.35));
  border-radius: 16px;
  cursor: pointer;
}

.play-overlay::before {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  display: block;
}

.play-overlay::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.play-overlay:hover { background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.4)); }

.product-gallery {
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rainbow);
  border-radius: 24px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-images img:hover { transform: scale(1.02); }

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-thumbnails img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-thumbnails img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.product-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-description {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 12px;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

.product-pricing {
  margin-bottom: 32px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shipping {
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.1rem;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

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

.contact-form { display: grid; gap: 14px; max-width: 640px; }

.form-row { display: grid; gap: 6px; }

label { color: var(--muted); }
.muted { color: var(--muted); }

input, textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--text-light);
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  box-shadow: 0 2px 8px var(--shadow) inset;
}

input:focus, textarea:focus { border-color: var(--primary-600); box-shadow: 0 0 0 3px var(--ring); }

.form-actions { margin-top: 6px; }

.site-footer { border-top: 1px solid var(--border); padding: 16px 0 40px; color: var(--muted); background: rgba(26, 26, 46, 0.8); }

@media (max-width: 860px) { 
  .grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .about-content { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr; }
  .steps-gallery { grid-template-columns: 1fr; }
  .cta { justify-content: center; }
  .product-card { grid-template-columns: 1fr; gap: 40px; }
  .product-features { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; background: var(--surface); position: absolute; right: 4%; left: 4%; top: 58px; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 12px 28px var(--shadow); }
  .nav[aria-expanded="true"] { display: block; }
  .nav ul { flex-direction: column; gap: 12px; padding: 12px 12px; }
  .nav-toggle { display: inline-block; }
  
  .bf-banner {
    top: 60px;
  }
  
  body {
    padding-top: 140px;
  }
  
  .bf-banner-content {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .bf-title {
    font-size: 1rem;
  }
  
  .bf-subtitle {
    font-size: 0.85rem;
  }
  
  .bf-coupon-box {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
  }
  
  .bf-copy-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .bf-close-btn {
    right: 0.5rem;
    font-size: 1.2rem;
  }
}


/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.lightbox-overlay[aria-hidden="false"] { display: flex; }

.lightbox-content {
  position: relative;
  max-width: min(95vw, 1100px);
  max-height: 90vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox-video {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: none;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--surface-light);
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--shadow);
}

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

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--shadow);
  font-size: 24px;
}

.lightbox-prev { left: -12px; }
.lightbox-next { right: -12px; }

.lightbox-caption {
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* Privacy Policy Styles */
.card h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card h3:first-child {
  margin-top: 0;
}

.card h4 {
  color: var(--text);
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

