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

body {
  font-family: 'Poppins', sans-serif;
  background: #1a0a2e;
  color: white;
  overflow-x: hidden;
  position: relative;
  height: 100vh;
  background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= COOKIE OVERLAY ================= */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-overlay.show {
  display: flex;
}

.cookie-overlay.hidden {
  display: none;
}

.cookie-modal {
  background: linear-gradient(160deg, #ffffff 0%, #fdf3ec 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  max-width: 650px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(200, 80, 20, 0.2);
  border: 1px solid rgba(255, 120, 50, 0.25);
  margin-bottom: 40px;
}

.cookie-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #8c2e05;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background: rgba(107, 33, 168, 0.1);
  color: #1a0a2e;
}

.cookie-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8c2e05;
  margin-bottom: 15px;
  text-align: center;
}

.cookie-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.cookie-text a {
  color: #e06020;
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-link {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.accept-link {
  background: linear-gradient(135deg, #e06020, #f5920a);
  color: #1a0a2e;
  border: none;
}

.accept-link:hover {
  background: linear-gradient(135deg, #c24a10, #d97d05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.45);
}

.close-link {
  background: #fdf3ec;
  color: #8c2e05;
  border: 1px solid rgba(224, 96, 32, 0.35);
}

.close-link:hover {
  background: #fae2d0;
  color: #1a0a2e;
  transform: translateY(-1px);
}

.cookie-footer {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(224, 96, 32, 0.2);
  padding-top: 15px;
}

.cookie-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-link {
  color: #e06020;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8c2e05;
  text-decoration: underline;
}

.separator {
  color: rgba(224, 96, 32, 0.4);
  font-size: 0.85rem;
}

.cookie-disclaimer {
  font-size: 0.50rem;
  color: #718096;
  line-height: 1.4;
  margin-top: 10px;
}

/* ================= POLICY CONTENT ================= */

.policy-content {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(224, 96, 32, 0.2);
  background: rgba(238, 244, 251, 0.6);
  max-height: 300px;
  overflow-y: auto;
  font-size: 0.50rem;
  color: #4a5568;
}

.policy-content.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.policy-content h4 {
  color: #8c2e05;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.policy-content p {
  color: #4a5568;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.policy-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.policy-content li {
  color: #4a5568;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.close-policy {
  background: linear-gradient(135deg, #6b21a8, #e06020);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.close-policy:hover {
  background: linear-gradient(135deg, #8c2e05, #e06020);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .cookie-modal {
    padding: 25px;
    margin: 15px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cookie-modal {
    padding: 25px;
    margin: 15px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px;
  }
}

/* ================= PRODUCT PAGE ================= */

.product-page {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #6b21a8 55%, #e06020 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero h1 .brand {
  color: #fbbf24;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #8c2e05;
  text-align: center;
  margin-bottom: 20px;
}

.section-sub {
  text-align: center;
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* WHAT IS */
.what-is {
  background: #ffffff;
}

.what-is p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* BENEFITS */
.benefits {
  background: #fdf3ec;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(107, 33, 168, 0.08);
  border: 1px solid rgba(224, 96, 32, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.15);
}

.benefit-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #8c2e05;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  background: #ffffff;
}

.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  padding: 30px 20px;
  background: #fdf3ec;
  border-radius: 16px;
  border: 1px solid rgba(224, 96, 32, 0.2);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #6b21a8, #e06020);
  color: white;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #8c2e05;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #6b21a8 0%, #e06020 100%);
}

.testimonials h2 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 28px 22px;
  color: white;
  backdrop-filter: blur(10px);
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.95;
}

.author {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
}

/* GUARANTEE */
.guarantee {
  background: #fdf3ec;
}

.guarantee-box {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(107, 33, 168, 0.1);
  border: 2px solid rgba(224, 96, 32, 0.2);
}

.guarantee-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.guarantee-box p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 15px auto 0;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, #1a0a2e 0%, #6b21a8 55%, #e06020 100%);
  text-align: center;
  color: white;
}

.final-cta h2 {
  color: white;
  font-size: 2.2rem;
}

.final-cta p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 15px auto 30px;
  line-height: 1.7;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.cta-badges span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* BUTTONS */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a0a2e;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
  letter-spacing: 0.3px;
}

.btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.55);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-order-large {
  font-size: 1.2rem;
  padding: 18px 52px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .section h2 { font-size: 1.6rem; }
  .final-cta h2 { font-size: 1.6rem; }
  .cta-badges { flex-direction: column; gap: 10px; }
  .guarantee-box { padding: 35px 20px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================= BACKGROUND IMAGES ================= */

body {
  background-image: url("mobile.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    background-image: url("tablet.png");
  }
}

@media (min-width: 1025px) and (max-width: 1920px) {
  body {
    background-image: url("desktop.png");
  }
}

@media (min-width: 1921px) {
  body {
    background-image: url("ultra.png");
  }
}