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

body{
  font-family:'Poppins', sans-serif;
  background:#0B0B0B;
  color:#fff;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:1000;
}

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

.logo img{height:65px;}

.nav a{
  margin-left:30px;
  text-decoration:none;
  color:#111;
  font-weight:500;
}

.nav a:hover{color:#6A2C91;}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  background: radial-gradient(circle at top right, #4B1E6D, #0B0B0B 60%);
  margin-top:80px;
}

.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:90%;
  max-width:1200px;
  margin:auto;
}

.hero-left h1{
  font-family:'Playfair Display', serif;
  font-size:64px;
  line-height:1.1;
  color:#D4AF37;
}

.hero-left p{
  margin:20px 0;
  color:#bbb;
}

.btn{
  display:inline-block;
  padding:14px 30px;
  background:#6A2C91;
  border-radius:6px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.btn:hover{
  background:#D4AF37;
  color:#000;
}

.hero-right img{
  width:420px;
  transform:rotate(-8deg);
  filter:drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation:float 4s ease-in-out infinite;
}

@keyframes float{
  0%{transform:translateY(0) rotate(-8deg);}
  50%{transform:translateY(-15px) rotate(-8deg);}
  100%{transform:translateY(0) rotate(-8deg);}
}

/* TRUST */
.trust{
  background:#111;
  text-align:center;
  padding:15px;
  font-size:14px;
  color:#ccc;
}

/* PRODUCTS */
.products{
  background:#fff;
  color:#000;
  padding:100px 0;
  text-align:center;
}

.products h2{
  font-family:'Playfair Display', serif;
  font-size:36px;
  margin-bottom:50px;
  color:#4B1E6D;
}

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

.card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

.card img{
  width:100%;
  height:240px;
  object-fit:contain;
  background:#f3f3f3;
  padding:20px;
}

.card-content{
  padding:20px;
  text-align:left;
}

.price{
  font-size:18px;
  font-weight:600;
  margin:10px 0;
  color:#6A2C91;
}

.view-btn{
  display:inline-block;
  padding:10px 18px;
  background:#000;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
  transition:0.3s;
}

.view-btn:hover{
  background:#6A2C91;
}

/* CTA */
.cta{
  text-align:center;
  padding:100px 20px;
}

.cta h2{
  font-family:'Playfair Display', serif;
  color:#D4AF37;
}

/* FOOTER */
.footer{
  background:#000;
  text-align:center;
  padding:25px;
  color:#777;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:14px 18px;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .hero-container{flex-direction:column;text-align:center;}
  .hero-right img{width:260px;margin-top:30px;}
  .hero-left h1{font-size:38px;}
}