.Common_Product_Card {
  width: 100%;
  cursor: pointer;
}

.Common_Product_Card .outer_colored_card {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.Common_Product_Card .img_holder {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  position: relative;
  overflow: hidden;
  background: #f3f1ef;
}

.Common_Product_Card .prod_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.Common_Product_Card:hover .prod_img {
  transform: scale(1.08);
}

.Common_Product_Card .img_holder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent 45%);
  pointer-events: none;
}

.Common_Product_Card .card_badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.Common_Product_Card .card_badge span {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #3d2a24;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.Common_Product_Card .text_holder {
  padding: 10px;
  background: #ffffff;
}

.Common_Product_Card .prod_name {
  margin: 0 0px;
  color: #3d2a24;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.Common_Product_Card .explore_text {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #7a6a64;
  font-size: 13px;
  font-weight: 600;
}

.Common_Product_Card .arrow_circle {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ded6d2;
  border-radius: 50%;

  color: #3d2a24;
  transition: all 0.3s ease;
}

.Common_Product_Card .arrow_circle svg {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.Common_Product_Card:hover .arrow_circle {
  background: #3d2a24;
  color: #ffffff;
  border-color: #3d2a24;
}

.Common_Product_Card:hover .arrow_circle svg {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .Common_Product_Card .text_holder {
    padding: 12px;
  }

  .Common_Product_Card .prod_name {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .Common_Product_Card .arrow_circle {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .Common_Product_Card .arrow_circle {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575px) {
  .Common_Product_Card .img_holder {
    aspect-ratio: 1 / 1.2;
  }

  .Common_Product_Card .text_holder {
    padding: 5px;
  }

  .Common_Product_Card .prod_name {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .Common_Product_Card .explore_text {
    font-size: 10px;
  }

  .Common_Product_Card .arrow_circle {
    width: 23px;
    height: 23px;
  }

  .Common_Product_Card .arrow_circle svg {
    font-size: 8px;
  }

  .Common_Product_Card .card_badge {
    top: 8px;
    left: 8px;
  }

  .Common_Product_Card .card_badge span {
    padding: 4px 8px;
    font-size: 7px;
  }
}
