@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
  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;
}


body{
  margin:0;
  font-family:Arial,sans-serif;
  background:#f5f5f5;
}

/* 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: 20px;

  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;
  padding:12px;
  text-align:center;
  line-height:1.6;
}


/* CATEGORY TABS */
.category-tabs{
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px;
    background: white;
    justify-content: flex-start;
}

.tab{
  flex-shrink: 0 ;
  text-decoration:none;
  padding:12px 18px;
  border-radius:30px;
  background:#f2f2f2;
  color:#333;
  white-space:nowrap;
}

.tab.active{
  background:#1fc75b;
  color:white;
  font-weight:bold;
}


/* HERO */
.hero{
  text-align:center;
  padding:40px 20px;
}

.hero h2{
  margin-bottom:8px;
}

.hero p{
  color:#666;
  font-size:16px;
}


/* CONCEPT CARD */
.concept-card{
  background:white;
  max-width:650px;
  margin:20px auto;
  padding:35px 28px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.concept-card h3{
  color:#1fc75b;
  margin-bottom:18px;
  font-size:24px;
}

.concept-card p{
  color:#555;
  line-height:1.8;
  font-size:17px;
}

/* product-card */

.products-container{

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 20px;
}

.product-card {
    width: 320px;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    text-align: center;
    margin: 18px 0 8px;
    font-size: 24px;
 }
  
.price {
    text-align: center;
    color: #1fc75b;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.product-description {
    text-align: center;
    color: #666;
    padding: 0 18px;
    line-height: 1.7;
    font-size: 15px;
}

.click-order {
    background: #1fc75b;
    color: white;
    text-align: center;
    margin: 20px;
    padding: 14px;
    border-radius: 14px;
    font-weight: bold;
    transition: 0.3s;
}
/* EXAMPLES */
.examples{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:25px;
}

.example-item{
  background:#eefbf2;
  color:#1fc75b;
  padding:10px 16px;
  border-radius:999px;
  font-weight:bold;
}


/* FOOTER */
.footer{
  margin-top:50px;
  padding:30px;
  text-align:center;
  background:white;
  border-top:1px solid #eee;
}

