/* =========================
   DESKTOP / LAPTOP VIEW
========================= */

.product-section{
  padding:0px 45px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f0dfcb;
  text-align:center;
}

.section-title{
  font-size:26px;
  margin-bottom:10px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.product-card{
  background:#f7eedd;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:all .35s ease;
  cursor:pointer;
}

.product-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-card img{
  width:100%;
  height:200px;
  background: #f7eedd;
  padding: 10px;

}

/* .product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
} */
 
/* .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f7eedd;
  padding: 5px;
} */

.card-body{
  padding:16px;
  text-align:center;
}

.product-name{
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.price{
  margin:8px 0;
  font-size: 18px;
}

.meta-line{
  font-size:16px;
  font-weight: 600 !important;
  color:#555;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.actions button{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
  gap:1px;
  padding:9px;
  border:none;
  border-radius:10px;
  font-size:13px;
  cursor:pointer;
  transition:.3s;
}

.add-btn{
  background:#2e7d32;
  color:#fff;
}

.add-btn:hover{
  background:#1b5e20;
}

.support-btn{
  color: #fff;
  background:#a52e25;
}

.support-btn:hover{
  background:#cf2c21;
}

.material-icons{
  font-size:18px;
}
 /* =========================
   APPLE MOBILE VIEW
========================= */
@media (max-width:430px){

  .product-section{
    padding:20px;
  }

  .section-title{
    font-size:22px;
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .product-card{
    border-radius:16px;
  }

  .product-card img{
    height:180px;
  }

  .product-name{
    font-size:15px;
  }

  .price{
    font-size:15px;
  }

  .meta-line{
    font-size:12px;
  }

  .actions{
    gap:8px;
  }

  .actions button{
    font-size:12px;
    padding:8px;
  }

  .material-icons{
    font-size:16px;
  }
}
  /* =========================
   ANDROID / SMALL MOBILE
========================= */
@media (max-width:360px){

  .section-title{
    font-size:20px;
  }

  .product-card img{
    height:160px;
  }

  .product-name{
    font-size:14px;
  }

  .price{
    font-size:14px;
  }

  .meta-line{
    font-size:11px;
  }

  .actions{
    flex-direction:column;
  }

  .actions button{
    width:100%;
    font-size:12px;
  }
}
/* =========================
   TABLET VIEW
========================= */
@media (max-width:1024px){

  .product-grid{
    grid-template-columns:repeat(1,1fr);
  }
}


/* =========================
   SHOW MORE / LESS BUTTON
========================= */

.btn-wrap{
  display:flex;
  justify-content:center;
  padding-bottom: 30px;
}

/* BUTTON */
/* #toggleBtn{
  padding:12px 36px;
  background:linear-gradient(135deg,#000,#333);
  color:#fff;
  border:none;
  border-radius:40px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  letter-spacing:.5px;
  transition:all .35s ease;
  position:relative;
  overflow:hidden;
} */

#toggleBtn{
  background: #6b3e1e;
    color: #fff;
    padding: 12px 36px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}


/* HOVER EFFECT */
#toggleBtn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,0,0,.25);
}

/* RIPPLE EFFECT */
#toggleBtn::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.15);
  opacity:0;
  transition:.3s;
}

#toggleBtn:hover::after{
  opacity:1;
}

/* ACTIVE (CLICK) */
#toggleBtn:active{
  transform:scale(.96);
}

/* MOBILE */
@media (max-width:430px){
  #toggleBtn{
    padding:10px 28px;
    font-size:13px;
  }
}

/* SMALL MOBILE */
@media (max-width:360px){
  #toggleBtn{
    width:100%;
    max-width:260px;
  }
}
