@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

html{
  scroll-behavior:smooth;
}

body{
  background:#0b0b0b;
  color:#fff;
}

/* HEADER */
header{
  background:#111;
  padding:15px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:#facc15;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:20px;
}

nav a:hover{
  color:#22c55e;
}

/* FLASH */
.flash{
  background:#facc15;
  color:#000;
  text-align:center;
  padding:8px;
  font-weight:600;
}

/* HERO */
.hero{
  padding:60px 20px;
  text-align:center;
}

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

.hero h1 span{
  color:#22c55e;
}

.hero p{
  color:#ccc;
  max-width:800px;
  margin:15px auto;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#22c55e;
  color:#000;
  padding:12px 30px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  margin-top:20px;
  transition:all .3s ease;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(34,197,94,.7);
}

/* PRODUCTS */
.products{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:#141414;
  border-radius:10px;
  padding:20px;
  text-align:center;
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(34,197,94,.4);
}

.card img{
  width:100%;
  margin-bottom:15px;
  transition:transform .4s ease;
}

.card:hover img{
  transform:scale(1.08);
}

.price del{
  color:#888;
  margin-right:8px;
}

.price span{
  color:#22c55e;
  font-size:20px;
  font-weight:700;
}

/* FOOTER */
footer{
  background:#111;
  padding:30px 20px;
  text-align:center;
}

footer a{
  color:#aaa;
  margin:0 10px;
  text-decoration:none;
}

footer a:hover{
  color:#22c55e;
}

/* FLOAT CONTACT */
.contact-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#facc15;
  color:#000;
  padding:15px;
  border-radius:50%;
  font-size:20px;
  font-weight:700;
  animation:pulse 2s infinite;
}

/* ANIMATIONS */
.fade-up{
  animation:fadeUp 1s ease forwards;
  opacity:0;
}

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

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(250,204,21,.7)}
  70%{box-shadow:0 0 0 20px rgba(250,204,21,0)}
  100%{box-shadow:0 0 0 0 rgba(250,204,21,0)}
}