/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

/* ===== BODY ===== */
body{
  background: linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  color:#e2e8f0;
  line-height:1.6;
}

/* ===== HEADER ===== */
.header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;

  background:#0f0c29;   /* ❌ glass removed */
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  font-size:22px;
  font-weight:700;
  color:#a78bfa;
}

.logo img{
  width:40px;
  height:40px;
  border-radius:50%;
  margin-right:8px;
}

/* NAV */
nav{
  display:flex;
  gap:15px;
  z-index: 2000;
}

nav a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:15px;
  position:relative;
  transition:0.3s;
}

/* underline animation */
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#a78bfa;
  transition:0.3s;
}

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

nav a:hover{
  color:#a78bfa;
}

/* ACTIVE */
nav a.active{
  color:#a78bfa;
}

/* MENU */
.menu-toggle{
  display:none;
  font-size:24px;
  color:#a78bfa;
  cursor:pointer;
}

/* OVERLAY */
#overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:none;
  z-index:;
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:fixed;
    top:0;
    right:-260px;
    width:auto-fit;
    height:auto-fit;

    background:#111827;   /* ❌ solid instead of glass */
    flex-direction:column;
    padding:25px;
    gap:20px;
    transition:0.4s;
  }

  nav.open{
    right:0;
  }

  #overlay.show{
    display:block;
  }
}

/* ===== HERO ===== */
.hero{
  text-align:center;
  padding:130px 20px 90px;
  background:
  linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
  url('favicon.jpg') center/cover no-repeat;
}

.hero h1{
  font-size:48px;
  background:linear-gradient(90deg,#a78bfa,#60a5fa);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:fadeDown 1s ease;
}

.hero p{
  margin-top:10px;
  color:#94a3b8;
  animation:fadeDown 1.3s ease;
}

/* ANIMATION */
@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== BUTTON ===== */
.btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  border-radius:30px;
  background:linear-gradient(135deg,#a78bfa,#60a5fa);
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
  box-shadow:0 10px 25px rgba(167,139,250,0.3);
}

/* ===== GRID ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  padding:px px;
}

/* ===== CARD (NO GLASS) ===== */
.card{
  position:relative;
  padding:15px;
  border-radius:20px;

  background:#111827;   /* ❌ solid dark */
  border:1px solid rgba(255,255,255,0.08);

  transition:0.4s;
  overflow:hidden;
}

/* glowing border */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:1px;
  background:linear-gradient(45deg,#a78bfa,#60a5fa,#22d3ee);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
            pointer-events:none; /* 🔥 IMPORTANT FIX */
}

/* hover glow */
.card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(45deg,#a78bfa,#60a5fa);
  opacity:0;
  transition:0.4s;
  z-index:0;
  filter:blur(20px);
    pointer-events:none; /* 🔥 IMPORTANT FIX */
}

.card:hover::after{
  opacity:0.25;
}

/* hover */
.card:hover{
  transform:translateY(-10px) scale(1.03);
}

/* TEXT */
.card h3{
  font-size:22px;
  margin-bottom:10px;
}

.card p{
  font-size: 13px;
  color:#94a3b8;
}

/* BUTTON */
.card a{
  display:block;
  text-align:center;
  text-decoration:none;
  margin-top:15px;
  padding:12px;
  border-radius:10px;
  background:linear-gradient(135deg,#60a5fa,#a78bfa);
  color:white;
  font-weight:600;
  z-index:;
}


.card a:hover{
  box-shadow:0 0 15px #60a5fa;
}

/* PRICE */
.price{
  color:#60a5fa;
  font-size:18px;
  margin-top:10px;
}

/* BADGE */
.badge{
  position:absolute;
  top:12px;
  right:12px;
  background:#a78bfa;
  color:#fff;
  padding:5px 10px;
  font-size:12px;
  border-radius:6px;
}

/* ===== PRODUCT ===== */
.product{
  padding:60px;
  max-width:900px;
  margin:auto;
}

.product h1{
  font-size:34px;
}

.product ul{
  margin-top:15px;
  padding-left:20px;
}

.product ul li{
  margin:6px 0;
  color:#cbd5e1;
}

/* BUTTON */
.view-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  border-radius:25px;
  background:linear-gradient(135deg,#a78bfa,#60a5fa);
  color:#fff;
  text-decoration:none;
}

/* ===== CONTACT ===== */
.contact{
  padding:60px;
  text-align:center;
}

.contact p{
  color:#94a3b8;
}

/* ===== FOOTER ===== */
.footer{
  background:#0f0c29;
  margin-top:60px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:50px;
}

.footer-col h3{
  color:#a78bfa;
}

.footer-col p{
  color:#94a3b8;
}

.footer-col a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-col a:hover{
  color:#a78bfa;
}

/* BUTTON */
.footer-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 15px;
  border-radius:25px;
  background:linear-gradient(135deg,#a78bfa,#60a5fa);
  color:#fff;
  text-decoration:none;
}

/* FOOTER BOTTOM */
.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  color:#64748b;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .hero h1{
    font-size:32px;
  }

  .grid{
    padding:15px;
  }
  
  
  .rating-box {
display: flex;
align-items: center;
gap: 8px;
font-family: Arial, sans-serif;
margin-top: 5px;
}
.stars {
color: #FFD700;
font-size: 16px;
}
.rating-text {
  font-size: 8px;
font-weight: bold;
}
.users {
color: #777;
font-size: 13px;
}

#stars span {
font-size: 16px;
cursor: pointer;
color: #ccc;
}
#stars span.active {
color: gold;
}
}






/* =====================================
   SCROLL ANIMATION SYSTEM
===================================== */

/* Hidden State */
.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:all 1.5s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Left Animation */
.reveal-left{
  opacity:0;
  transform:translateX(-100px);
  transition:all 1.5s ease;
}

.reveal-left.active{
  opacity:1;
  transform:translateX(0);
}

/* Right Animation */
.reveal-right{
  opacity:0;
  transform:translateX(20px);
  transition:all 1s ease;
}

.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

/* Zoom Animation */
.reveal-zoom{
  opacity:0;
  transform:scale(.8);
  transition:all 1.5s ease;
}

.reveal-zoom.active{
  opacity:1;
  transform:scale(1);
}

/* Rotate Animation */
.reveal-rotate{
  opacity:0;
  transform:rotate(10deg) scale(.8);
  transition:all 1.5s ease;
}

.reveal-rotate.active{
  opacity:1;
  transform:rotate(0) scale(1);
}

/* Better Hover Effects */

.card{
  transition:1.5s;
}

.card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:
  0 0 20px rgba(96,165,250,.3),
  0 0 40px rgba(167,139,250,.2);
}

.btn,
.view-btn,
.footer-btn,
.card a{
  transition:.4s;
}

.btn:hover,
.view-btn:hover,
.footer-btn:hover,
.card a:hover{
  transform:translateY(-4px) scale(1.05);
}

.badge{
  animation:pulse 2s infinite;
}

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




.faq-item {
    margin-bottom: 15px;
    margin: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background:#111827 ;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "▼";
    float: right;
    font-size: 20px;
}

.faq-item[open] summary::after {
    content: "▲";
}

.faq-item p {
    margin-top: 12px;
    line-height: 1.6;
}