*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial;
  background:#111;
  color:white;
}

/* TOPBAR */

.topbar{
  background:#ff7a00;
  padding:10px;
  text-align:center;
  font-weight:bold;
}

/* NAV */

nav{
  position:sticky;
  top:0;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:15px 30px;

  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px);
}

nav ul{
  display:flex;
  list-style:none;
  gap:20px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

/* HERO */

header{
  position:relative;
  height:100vh;
  overflow:hidden;

  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.5);
}

.hero-text{
  position:relative;
  z-index:5;

  text-align:center;
}

.hero-text h1{
  font-size:70px;
}

.hero-text p{
  margin-top:10px;
  font-size:22px;
}

.hero-text button{
  margin-top:20px;
}

/* BUTTON */

button{
  background:#ff7a00;
  border:none;
  padding:12px 20px;
  border-radius:12px;

  color:white;
  font-weight:bold;

  cursor:pointer;
}

/* CONTAINER */

.container{
  max-width:1200px;
  margin:auto;
  padding:30px;
}

/* CARD */

.card{
  background:rgba(255,255,255,0.05);

  margin-bottom:30px;
  padding:25px;

  border-radius:20px;

  backdrop-filter:blur(10px);
}

/* GALLERY */

.gallery{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:15px;
}

.gallery img{
  width:100%;
  height:250px;

  object-fit:cover;

  border-radius:15px;

  cursor:pointer;

  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.03);
}

/* MEME GRID */

.meme-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(200px,1fr));

  gap:15px;
}

.meme-grid img{
  width:100%;
  border-radius:15px;
}

/* SHOP */

.shop-box{
  display:flex;
  gap:20px;
  align-items:center;
}

.shop-box img{
  width:220px;
  border-radius:15px;
}

/* INPUTS */

input,
textarea{
  width:100%;

  margin-top:10px;
  margin-bottom:15px;

  padding:12px;

  border:none;
  border-radius:12px;
}

/* CART */

#cart{
  position:fixed;

  right:20px;
  bottom:20px;

  background:rgba(0,0,0,0.85);

  padding:20px;

  border-radius:20px;
}

/* LIGHTBOX */

#lightbox{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.9);

  display:none;

  justify-content:center;
  align-items:center;

  z-index:9999;
}

#lightbox img{
  max-width:90%;
  max-height:90%;

  border-radius:20px;
}

/* TOP BUTTON */

#topBtn{
  position:fixed;

  left:20px;
  bottom:20px;

  display:none;
}

/* MOBILE */

@media(max-width:700px){

  nav{
    flex-direction:column;
    gap:15px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-text h1{
    font-size:45px;
  }

  .shop-box{
    flex-direction:column;
  }

}