*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:rgb(248, 229, 229);
  color:black;
  font-family: Arial, sans-serif;
}

.logo img {
  width: 110px;
  margin-bottom: 20px;

}

.brand-name {
  text-align: center;
  margin: 0;
  font-size: 17px;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  transition: 0.3s;
  font-weight: bold;
}

.nav-right a:hover {
  color: black;
  border: solid black 3px;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
   background: #7a1f1f; 
  color: white;
  border-bottom: solid 2px white;
}

.navbar div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-icon{
  display:none;
  font-size:24px;
  cursor:pointer;
}

.navbar button {
  background: gold;
  color: black;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.cart-box{
  position:fixed;
  right:-100%;
  top:0;
  width:300px;
  height:100%;
  background:#111;
  padding:20px;
  transition:0.4s;
  z-index:1000;
}

.cart-box.active{
  right:0;
}

.cart{
  color:gold;
}

.hero{
  text-align:center;
  padding:30px 20px;
  text-align: center;
   background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/20260419_195433\(1\).webp');
  background-size: cover;
  height:350px;
}

.hero-logo {
  animation: fadeIn 1.5s ease-in-out;

  
}
.hero img{
  height: 80px;
  width:auto;
  border-radius: 10px;

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1{
  font-size: 30px;
  color: white;
  font-weight: 700;
}
.hero p{
      color: white;
      font-weight: bold;
      margin-top: 20px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: gold;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: tomato;
   border:rgb(247, 129, 129) solid 4px;
   color: white;
}
/* PRODUCTS */
.products{
  padding:40px;
  margin-top: 40px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:rgb(244, 146, 128);
  border-radius:12px;
  overflow:hidden;
  text-align:center;
  transition:0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
}

.product img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  border-radius: 10px;
}

.products h2{
  text-align: center;
  margin-bottom: 20px;
  color: #ef4c1f;
  font-weight: bold;
}

img{
  max-width: 100%;
  height: auto;
}

.price{
  color:black;
  margin:10px 0;
  font-weight: 900;
  font-size: 20px;
}

button{
  margin:10px;
  padding:10px 20px;
  background:gold;
  border-radius: 8px;
  cursor:pointer;
  font-weight: 800;
  border: none;
}
button:hover{
    background-color: #fff;
      color: #da2606;
}

.cart-panel {
  position: fixed;
  right: -320px;
  top: 0;
  width: 300px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
 background: linear-gradient(oklab(72.382% 0.13501 0.0838), #2047f2);
  color: white;
  padding: 20px;
  transition: 0.4s;
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.cart-panel.active {
  right: 0;
}

.clear-btn {
  margin-top: 10px;
  background: red;
}

.btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background:tomato;
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight:bold ;
  border-radius: 10px;
}
.btn:hover {
      background-color: #fff;
      color: #da2606;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 50%;
}

.footer {
  background: linear-gradient(135deg, #ec3d02, #5e6d5d);
  color: #fff;
  padding: 20px;
  text-align: center;
}


li button{
  background:red;
  border:none;
  color:white;
  padding:5px;
  cursor:pointer;
}
html {
  scroll-behavior: smooth;
}

.close-cart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
  width: 50px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: 0.4s;
}

#popup.show {
  opacity: 1;
  bottom: 50px;
}

#cart-items li {
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

#cart-items button {
  margin: 3px;
  padding: 5px 8px;
  background: gold;
  color: black;
  border: none;
  cursor: pointer;
}


button:hover {
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
}

.fly-img {
    position: fixed;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.65, -0.2, 0.25, 1.5);
}

@media (max-width: 768px){

  .navbar{
    flex-direction: column;
    align-items: center;
    gap: 10px;

  }

  .hero h1{
    font-size: 25px;
  }

  .hero p{
    font-size: 14px;
  }

  .products{
    padding: 10px;
    margin-top: 0px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
    gap: 20px;
  
  }

  .card{
    margin: 10px 0;
  }

  button{
    width: 90%;
    font-size: 16px;
  }

  .cart-box{
    padding: 15px;
  }

   .menu-icon{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:60px;
    right:-100%;
    background:black;
    flex-direction:column;
    width:200px;
    padding:20px;
    transition:0.3s;
  }

  .nav-links.active{
    right:0;
  }

  .hero{
  height: auto;
}
}

