




/* ===================== */
/* BODY */
/* ===================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================== */
/* HERO – PRO VERSION */
/* ===================== */
.hero-pro {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,0,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,107,0,0.1), transparent 40%),
    linear-gradient(180deg, #0b0b0b, #000);
  overflow: hidden;
}

.hero-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFade 1.2s ease forwards;
}

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

.badge-pro {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--accent);
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35);
}

.hero-title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ===================== */
/* INTERACTIVE 3D TEXT */
/* ===================== */
.hero-3d-text {
  width: 400px;
  height: 220px;
  perspective: 1200px;
  position: relative;
}

.hero-3d-text .hero-3d-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #111, #000);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  animation: idleFloatText 3s ease-in-out infinite;
}

.hero-3d-text img {
    width: 100%;
  min-width: 600px;   /* controls how big the image is */
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.hero-3d-text h1 span {
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
}

.hero-3d-text::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,107,0,0.35), transparent 60%);
  filter: blur(50px);
  z-index: -1;
}

@keyframes idleFloatText {
  0% { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  50% { transform: rotateX(3deg) rotateY(-4deg) translateY(-12px); }
  100% { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
}
/* Add responsive breakpoints */
@media (max-width: 768px) {
  .hero-pro {
    min-height: 85vh;
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 32px !important;
  }
  
  .hero-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .hero-3d-text {
    width: 100%;
    height: 180px;
    margin-top: 40px;
  }
  
  .hero-3d-text img {
    min-width: 100%;
  }
  
    .col-lg-6.d-flex {
    order: -1; /* Put image above text on mobile */
    margin-bottom: 30px;
  }
  
  .hero-3d-text {
    width: 100%;
    max-width: 400px; /* Limit width on mobile */
    height: 200px;
    margin: 0 auto;
  }
  
  .hero-3d-text img {
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* Adjust hero content spacing */
  .hero-content {
    padding-top: 20px;
  }
  /* Fix button layout on mobile */
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 15px !important;
    width: 100%;
  }
  
  .btn-lg {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Product grid fix */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }
  
  .products {
    padding: 60px 20px !important;
  }
  
  /* Feature cards stack on mobile */
  .feature-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px !important;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-3d-inner {
    border-radius: 12px;
  }
}


/* ===================== */
/* FEATURES SECTION */
/* ===================== */
.features h2 span {
  color: var(--accent);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
              var(--dark-soft);
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 4px 10px rgba(243, 114, 59, 0.45),
    0 0 10px rgba(255, 107, 0, 0.08),       /* 🔥 subtle brand glow */
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}



.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 40px rgba(255, 107, 0, 0.35),
    0 0 40px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.45);
}



.feature-card h3 { margin-bottom: 12px; }

/* ===================== */
/* FEATURED PRODUCTS – PRO */
/* ===================== */
/* ===================== */
/* PRODUCTS SECTION */
.products {
  padding: 80px 24px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* ===================== */
/* PRODUCT CARD */
.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
              var(--dark-soft);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);

  /* 🔥 default premium shadow */
  box-shadow:
    0 4px 10px rgba(243, 114, 59, 0.45),
    0 0 10px rgba(255, 107, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 18px 40px rgba(255,107,0,0.35),
    0 0 30px rgba(255,107,0,0.18);
}

/* ===================== */
/* PRODUCT IMAGE */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===================== */
/* PRODUCT CONTENT */
.product-overlay {
  padding: 16px 14px 18px;
  text-align: left;
}

.product-overlay h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(255,107,0,0.4);
  opacity: 1;
  transform: none;
  animation: none;
}

/* ===================== */
/* QUANTITY INPUT */
.quantity {
  width: 56px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.5);
  background: rgba(0,0,0,0.4);
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 8px 0 10px 0;
  font-size: 0.9rem;
}

.quantity:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25);
}

/* ===================== */
/* ADD TO CART BUTTON */
.buy-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: white;
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.buy-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,107,0,0.35);
  color: #111; /* 🔒 prevent black-on-black bug */
}

/* ===================== */
/* MOBILE UX */
@media (max-width: 768px) {
  .product-card:hover {
    transform: none; /* no hover scaling on touch */
  }

  .product-card {
    box-shadow:
      0 6px 16px rgba(243, 114, 59, 0.35),
      0 0 12px rgba(255, 107, 0, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .product-overlay {
    padding: 14px;
  }

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

/* ===================== */
/* CTA – PRO */
.cta {
  background: var(--dark-soft);
  text-align: center;
  padding: 80px 20px;
}

.cta h2 span {
  color: var(--accent);
}

.cta p {
  color: #f3d2ba;
  /* color: rgb(255, 201, 158); */
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.cta .btn-warning {
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.4s ease;
}



/* ===================== */

/* Social Links */
    .social-section {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid hsla(220, 15%, 20%, 0.5);
    }

    .social-title {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--text-mutedd));
      margin-bottom: 1rem;
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
    }

    .social-link {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: hsl(var(--brand));
      display: flex;
      align-items: center;
      justify-content: center;
      color: hsl(var(--text-mutedd));
      transition: background 0.2s, color 0.2s;
    }

    .social-link:hover {
      background: hsl(var(--brand));
      color: hsl(var(--text-muted));
    }

    .social-link svg {
      width: 1.25rem;
      height: 1.25rem;
    }


