.elementor-65 .elementor-element.elementor-element-30f216b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-65 .elementor-element.elementor-element-e0cf56d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-65 .elementor-element.elementor-element-efa6064{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-65 .elementor-element.elementor-element-f119e7f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-65 .elementor-element.elementor-element-e7a5cbf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e418c43 *//* SECTION */
.product-categories {
  padding: 90px 16px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #e10600;
  margin-bottom: 60px;
}

/* GRID */
.category-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/* CARD */
.category-card {
  border-radius: 22px;
  padding: 28px 22px;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  min-height: 380px;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

/* TITLE */
.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 14px;
}

/* IMAGE – PERFECT CENTER */
.category-card img {
  width: 150px;
  max-width: 100%;
  margin: auto 0;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

/* BUTTON */
.cat-btn {
  margin-top: 20px;
  padding: 11px 28px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* COLOR THEMES */
.milk { background: #0b5ed7; }
.flavoured { background: #7cc000; }
.buttermilk { background: #e10600; }
.paneer { background: #0b5ed7; }
.dahi { background: #7cc000; }
.ghee { background: #e10600; }

/* TABLET */
@media (min-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 42px;
  }
}/* End custom CSS */