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

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

  font-family: "Poppins", sans-serif;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}




/* FAST ORDER BUTTON */
.hero-order-btn {

  display: inline-block;

  margin-top: 15px;

  padding: 15px 28px;

  background: #1fc75b;

  color: white;

  text-decoration: none;

  border-radius: 40px;

  font-size: 18px;

  font-weight: bold;

  transition: 0.3s;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.18);

}

.hero-order-btn:hover {

  background: #17ae4c;

  transform: translateY(-2px);

}

/* PRODUCT CARD */
.product-card {

  cursor: pointer;

  transition: 0.25s;

  border-radius: 18px;

}

.product-card:hover {

  transform: translateY(-5px);

}

.product-description {

  color: #666;

  font-size: 14px;

  line-height: 1.5;

  margin: 10px 0;

}

.click-order {

  margin-top: 15px;

  background: #f2fff5;

  color: #1fc75b;

  padding: 10px;

  border-radius: 12px;

  text-align: center;

  font-weight: bold;

}

/* 
====================================================================================
================================================================================= */
html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0.58)),
    url("bacl.jpeg?v=3");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  color: #222;
  margin: auto;

  overflow-x: hidden;
}

header,
a {
  text-decoration: none;
}

/* ===== NAVBAR ===== */

.navbar {

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(12px);

  padding: 14px 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04);

  position: sticky;

  top: 0;

  z-index: 100;
}

/* ===== LOGO ===== */

.logo-img {
  width: 42px;
  height: 36px;
  vertical-align: middle;
  margin-top: -12px;
  margin-left: -12px;
}

.logo {

  display: inline-block;

  font-size: 24px;

  font-weight: 700;

  color: #166534;

  font-family: "Poppins", sans-serif;

  letter-spacing: 1px;

  text-shadow:
    0 0 5px rgba(34, 197, 94, 0.15);
}

/* ===== ONLINE STATUS ===== */

.nav-links h3 {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #222;
}

.dot {
  display: inline-block;

  width: 10px;
  height: 10px;

  background: limegreen;

  border-radius: 50%;

  margin-left: 8px;

  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* TIMING BAR */
.timing-bar {

  background: #fff8cc;

  border: 1px solid #f0df91;

  padding: 12px 18px;

  text-align: center;

  display: flex;

  flex-direction: column;

  gap: 2px;

  font-size: 15px;
}



/* CATEGORY TABS */
.category-tabs {

  display: flex;

  gap: 5px;

  overflow-x: auto;

  padding: 14px;

  background: white;

  justify-content: center;

  border-bottom: 1px solid #eee;


}



.category-tabs::-webkit-scrollbar {

  display: none;

}

.tab {

  flex-shrink: 0 ;

  text-decoration: none;

  border: none;

  background: #f3f3f3;

  color: #333;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 15px;

  cursor: pointer;

  white-space: nowrap;

}

.tab.active {

  background: #1fc75b;

  color: white;

  font-weight: bold;

}

/* ===== HERO ===== */

.hero {
  text-align: center;
  padding: 10% 20px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.hero-content button {

    font-size: 18px;
    font-weight: 600;
    color: rgb(31 157 85);
    text-align: center;
    margin: 14px;
    padding: 9px;
    border-radius: 12px;
    border-block-color: #1b1919;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(34, 197, 94, 0.22);
}

.hero-content p {

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  font-size: 21px;

  margin-bottom: 28px;

  padding: 18px;

  border-radius: 22px;

  color: #1F9D55;

  font-weight: 500;

  text-shadow:
    0 0 5px rgba(34, 197, 94, 0.15);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.05);
}

/* ===== PRODUCTS ===== */

.products-container {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
  max-width: 600px;
  justify-content: center;
  margin: 0 auto;

  padding: 70px 24px 100px 24px;
}

.product-card {

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  padding: 15px;

  border-radius: 24px;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.06);
}

.product-card:hover {

  transform:
    translateY(-6px) scale(1.01);

  box-shadow:
    0 12px 30px rgba(34, 197, 94, 0.12);
}

.product-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}

.price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */

.btn {

  display: inline-block;

  width: 100%;

  padding: 13px;

  background:
    linear-gradient(135deg,
      #22c55e,
      #16a34a);

  color: white;

  border: none;

  border-radius: 16px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  text-align: center;

  text-decoration: none;

  box-shadow:
    0 8px 20px rgba(34, 197, 94, 0.25);
}

.btn:hover {

  transform: scale(1.03);

  box-shadow:
    0 10px 24px rgba(34, 197, 94, 0.32);
}




/* ===== FOOTER ===== */

.footer {

  text-align: center;

  backdrop-filter: blur(10px);

  margin-top: 30px;

  box-shadow:
    0 -2px 10px rgba(0, 0, 0, 0.05);

  background: #fafafa;

  padding: 35px 20px;

  border-top: 1px solid #eee;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;

}

.social-icons {

  display: flex;

  justify-content: center;

  gap: 18px;

  margin: 18px 0;

}

.social-icons img {

  width: 42px;

  height: 42px;

}

.footer p {

  color: #555;

  line-height: 1.6;

}

.copyright {

  margin-top: 20px;

  font-size: 14px;

  color: #888;

}

/* ===== RESPONSIVE ===== */

@media(max-width:900px) {

  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .products-container {
    gap: 15px;
    padding: 50px 18px 80px 18px;
  }

  .product-card {
    padding: 12px;
  }

  .nav-links h3 {
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
  }
}
