.product-card {
    background: #fff;
    width: 100%;
    min-height: 510px;
    padding: 16px;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    position: relative;
}

.favorite-btn,
.btn.btn-wishlist,
.btn.btn-wishlist:hover,
.btn.btn-wishlist:focus {
    position: absolute;
    z-index: 10;
    top: 16px;
    right: 16px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    width: 24px;
    height: 24px;
    box-shadow: none !important;
}

.btn-wishlist:before {
    color: #333 !important;
}

.favorite-btn svg {
    fill: none;
    stroke: #333 !important;
    stroke-width: 2;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    margin-bottom: 16px;
}

.image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.badges {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.badge {
    font-size: 11px;
    font-weight: bold;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0px !important;
}

.badge-new {
    background-color: #00cc00;
    color: #fff;
}

.badge-hit {
    background-color: #000;
    color: #fff;
}

.badge-sale {
    background-color: #ffe600;
    color: #000;
}

.title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.description {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: line-line-through;
    text-decoration-line: line-through;
}

.discount {
    background-color: #ffe600;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.more-btn {
    display: block;
    width: 100%;
    background-color: #f8f8f8;
    color: #000;
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.more-btn:hover {
    background-color: #eeeeee;
}

/* Позиционируем сердечко внутри стандартного блока картинки */
.product-thumb .image {
  position: relative !important;
  overflow: hidden;
}

.product-thumb .favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 15;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.product-thumb .favorite-btn svg {
  fill: none;
  stroke: #a5a5a5;
  stroke-width: 2;
  transition: all 0.2s ease;
}

/* Стиль при наведении или если товар уже в избранном */
.product-thumb .favorite-btn:hover svg,
.product-thumb .favorite-btn.wished svg {
  fill: #ff4d4f;
  stroke: #ff4d4f;
}

/* Стилизация вашей зеленой кнопки "Подробнее" */
.product-thumb .more-btn {
  display: block;
  width: 100%;
  background-color: #689f00 !important;
  color: #ffffff !important;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
}

.product-thumb .more-btn:hover {
  background-color: #558200 !important;
}
