.category-card-v2 {
  padding: 24px 16px 12px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  background-color: #F7F8F9;
  transition: all 0.3s ease; }
  @media (max-width: 767px) {
    .category-card-v2 {
      padding: 20px 10px; } }
  @media (min-width: 1024px) {
    .category-card-v2:hover {
      background-color: #eeeeee; }
      .category-card-v2:hover .category-card__image {
        transform: scale(1.1); }
      .category-card-v2:hover .category-card__title {
        color: #F53636; }
      .category-card-v2:hover .category-card__quantity {
        color: #000000; } }
  .category-card-v2__inner {
    display: flex;
    flex-direction: column;
    flex: 1; }
  .category-card-v2 .category-card__image {
    height: 237px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: all 0.3s ease; }
    @media (max-width: 767px) {
      .category-card-v2 .category-card__image {
        position: relative;
        height: auto;
        padding-bottom: 100%; }
        .category-card-v2 .category-card__image .lazy-img-wrap {
          position: absolute;
          inset: 0; }
          .category-card-v2 .category-card__image .lazy-img-wrap img {
            min-width: 100%;
            min-height: 100%;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; } }
  .category-card-v2 .category-card__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .category-card-v2 .category-card__title {
        font-size: 16px; } }
  .category-card-v2 .category-card__quantity {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #585C62;
    display: flex;
    margin-top: 16px;
    gap: 4px;
    transition: all 0.3s ease; }
    @media (max-width: 767px) {
      .category-card-v2 .category-card__quantity {
        font-size: 14px;
        margin-top: 10px; } }
  .category-card-v2 .category-card__link {
    padding: 20px;
    background-color: #6F4EF3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    margin-top: auto;
    transition: all 0.3s ease; }
    @media (min-width: 1024px) {
      .category-card-v2 .category-card__link:hover {
        background-color: #F53636; } }
