* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  background-attachment: fixed;

}

body {
  position: relative;
  background: #f8f0e3;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("backocado.png") center/cover no-repeat;
  
  z-index: -2;   /* very back */
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}


/* HEADER */ 
header {
  /*
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("green\ aboucado.jpeg");*/
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 40px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
} 

.logo {
  width: 320px;   /* adjust size */
  max-width: 100%; 
}

/* CATEGORIES */
.categories-wrapper {
  position: sticky;
  top: 0;
  /* distance from top */
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 30px auto;
  padding: 10px;
  background: transparent;
  /* IMPORTANT so content doesn’t show behind */
}


.categories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;

}

.categories::-webkit-scrollbar {
  display: none;
}

.categories button,
.arrow {
  padding: 10px 20px;
  border: none;
  background: white;
  color: black;
  border-radius: 20px;
  cursor: pointer;
}

.categories button:hover,
.arrow:hover {
  background:#e6d7bf;
  color: rgb(31, 28, 28);
}

/* MENU GRID */
.menu {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ITEM CARD */


.item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.item h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.item p {
  color: #666;
  font-size: 14px;
}

.price {
  color: black;
  font-weight: bold; 
  font-size: 25px;
}

/* SIZES */
.sizes {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.sizes div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 17px;
  background:transparent;
  color: black;
  margin-top: 50px; 
  font-family: 'Tangerine', serif;
  font-size: 40px;
  text-shadow: 4px 4px 4px #aaa;
  font-weight:700;  
}




.item {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* MULTI-COLOR NEW BADGE */
.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff9800, #ff3b3b, #9c27b0);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Optional border highlight */
.item.new {
  border: 3px solid #9c27b0;
}

.new-badge {
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ITEM SCROLL ANIMATION */
.item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.item.show {
  opacity: 1;
  transform: translateY(0);
}

.categories button.active {
  background: #fff;
  color: #111;
  font-weight: 600;
}

.item {
  scroll-margin-top: 90px;
  /* adjust if you have a navbar */
} 
.logo2 { 
    width: 50px;   /* adjust size */
  max-width: 100%; 
} 

.bx{ 
  
  text-decoration: none;   /* removes underline */
  color: #E4405F;          /* Instagram color */
  font-size: 30px;
}

.bx:hover { 
  text-decoration: none;
  color:purple;           /* changes color on hover */
  transform: scale(1.2);   /* makes it bigger on hover */
  transition: 0.3s;
} 
.whatsapp-icon {
  color: rgb(22, 87, 22);
  cursor: pointer; 
    text-decoration: none;   /* removes underline */
  font-size: 30px;

}

.whatsapp-icon:hover {
  transform: scale(1.2);
}

