#page {
  min-height: unset !important;
}

.elementor-element-ec1c454 {
  position: absolute;
  top: 0;
  background-color: none !important;
}

.ast-container {
  display: block !important;
}

/* Category Menu Styling based on the image */
.category-thumbnail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}
.category-thumbnail-item {
  width: calc((100% - 120px) / 4);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.category-thumbnail-item:hover {
  border: solid 1px #143db1;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 3px rgba(20, 61, 177, 0.4);
}
.category-thumbnail-item:hover .thumb-title svg {
  opacity: 1;
  transform: translateX(0);
}
.category-thumbnail-item:hover .thumb-img-wrapper {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.thumb-img-wrapper {
  width: 100%;
  height: 270px; /* Fixed height as required */
  display: flex;
  justify-content: center;
  align-items: center; /* This centers items vertically */
  border: solid 1px #dddddd;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}
.thumb-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* Maintains aspect ratio and fits within container */
  display: block; /* Removes any extra spacing below the image */
}
.thumb-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 24px 20px;
  position: relative;
}
.thumb-title span {
  transition: all 0.3s ease;
}
.thumb-title svg {
  position: absolute;
  right: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
  .category-thumbnail-item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .category-thumbnail {
    gap: 30px;
    margin: 30px 0;
    padding: 0 10px !important;
  }
}
@media screen and (max-width: 576px) {
  .category-thumbnail-item {
    flex: 0 0 100%;
  }
}/*# sourceMappingURL=product-home.css.map */