.Common_Product_Card {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.Common_Product_Card:hover {
  transform: translateY(-4px);
}

.Common_Product_Card .outer_colored_card {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 14px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.Common_Product_Card:hover .outer_colored_card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.Common_Product_Card .img_holder {
  width: 100%;

  aspect-ratio: 1 / 0.85;

  position: relative;
  overflow: hidden;

  background: #f5f5f5;
}

.Common_Product_Card .img_holder .prod_img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.Common_Product_Card:hover .img_holder .prod_img {
  transform: scale(1.06);
}

.Common_Product_Card .image_overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.08));

  pointer-events: none;
}

.Common_Product_Card .text_holder {
  width: 100%;
  background: #fff;
  padding: 11px 13px;
}

.Common_Product_Card .category_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.Common_Product_Card .prod_name {
  margin: 0;
  color: #17233d;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Common_Product_Card .explore_text {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 5px;

  color: #16223d;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.Common_Product_Card .explore_text svg {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.Common_Product_Card:hover .explore_text {
  color: #000;
}

.Common_Product_Card:hover .explore_text svg {
  transform: translateX(3px);
}

.Common_Product_Card .outer_colored_card.green,
.Common_Product_Card .outer_colored_card.brown,
.Common_Product_Card .outer_colored_card.blue,
.Common_Product_Card .outer_colored_card.pink,
.Common_Product_Card .outer_colored_card.teal,
.Common_Product_Card .outer_colored_card.dark_green,
.Common_Product_Card .outer_colored_card.white,
.Common_Product_Card .outer_colored_card.gray {
  background: #fff;
}

.Common_Product_Card .outer_colored_card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  z-index: 5;
}

/* Green */

.Common_Product_Card .outer_colored_card.green::before {
  background: #6f9f19;
}

/* Brown */

.Common_Product_Card .outer_colored_card.brown::before {
  background: #c18a1d;
}

/* Blue */

.Common_Product_Card .outer_colored_card.blue::before {
  background: #208dbc;
}

/* Pink */

.Common_Product_Card .outer_colored_card.pink::before {
  background: #b85ab1;
}

/* Teal */

.Common_Product_Card .outer_colored_card.teal::before {
  background: #54959c;
}

/* Dark green */

.Common_Product_Card .outer_colored_card.dark_green::before {
  background: #1d6034;
}

/* White */

.Common_Product_Card .outer_colored_card.white::before {
  background: #8bbbef;
}
/* Gray */

.Common_Product_Card .outer_colored_card.gray::before {
  background: #7fabdb;
}

@media (max-width: 991px) {
  .Common_Product_Card:hover {
    transform: none;
  }

  .Common_Product_Card .img_holder {
    aspect-ratio: 1 / 0.9;
  }

  .Common_Product_Card .text_holder {
    padding: 9px 10px;
  }

  .Common_Product_Card .prod_name {
    font-size: 13px;
  }

  .Common_Product_Card .explore_text {
    font-size: 9px;
  }
}

@media (max-width: 575px) {
  .Common_Product_Card .outer_colored_card {
    border-radius: 11px;
  }

  .Common_Product_Card .img_holder {
    aspect-ratio: 1 / 0.9;
  }

  .Common_Product_Card .text_holder {
    padding: 8px 9px;
  }

  .Common_Product_Card .prod_name {
    font-size: 11px;
  }

  .Common_Product_Card .explore_text {
    font-size: 8px;
    gap: 3px;
  }

  .Common_Product_Card .explore_text svg {
    font-size: 7px;
  }
}
