
.food-categories-sec {
  background: var(--bg-cream);
  padding-bottom: 80px;
}

.product-category {
  color: var(--primary);
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 30px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.product-category::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- The Premium Product Card --- */
.product-card {
  background: rgb(255, 241, 180,0.4);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(22, 72, 22, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

/* ================= VIEW CATEGORY BOX ================= */

.view-category-wrapper{
  display: flex;
  justify-content: center;
  margin: 50px 0 10px 0;
}

.view-category-box{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: var(--primary);
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 1000px; 
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.view-category-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* title */
.category-info {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

/* button */
.view-category-btn{
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent);
  /* border: 2px solid #fff; */
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.view-category-btn:hover{
  background-color: var(--theme-logo);
  border: none;
  color:var(--primary);
  transform: translateY(-2px);
}

/* .product-card::before {
  content: "Premium";
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
} */
.view-products-btn{
  display: inline-block;
  padding: 14px 32px;
  background-color:var(--primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.view-products-btn:hover{
  background-color: var(--accent);
  transform: translateY(-2px);
  color:#fff
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(22, 72, 22, 0.15);
  border-color: var(--accent);
}

.product-card img {
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: var(--transition);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* --- Modernized Button Group --- */
.btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.product-card .btn-whatsapp, .product-card .btn-outline {
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px !important;
  /* border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important; */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  

}

.product-card .btn-whatsapp {
  background-color: var(--primary);
  color: white;
  border: none;
}

.product-card .btn-whatsapp:hover {
  
  color:var(--white) ;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-card .btn-outline {
  background: #fff;
  color: var(--primary);
  border: 3px solid var(--theme-logo);
}

.product-card .btn-outline:hover {
  background-color: var(--accent);
  border: none ;
  color: #fff;

}

@media (max-width: 767px){
  .view-category-box{
    max-width: 200px; 
  }

}


@media (max-width: 576px){
  .view-category-box{
    max-width: 100px; 
  }

}

@media (max-width: 992px){
  .view-category-box{
    max-width: 700px; 
  }

}