/* === PRODUCT CARD === */
.product-card {
    flex: 0 0 auto;
    width: 156px;
    min-width: 156px;
    max-width: 156px;
    height: 246px;
    background: #000;
    border-radius: 14px;
    box-shadow: none;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
    transition: box-shadow 0.18s;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
}
.product-card-img {
    width: 156px;
    height: 156px;
    border-radius: 14px 14px 14px 14px;
    overflow: hidden;
    background: #181818;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.product-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-top: 4px;
    margin-bottom: 0;
    flex-shrink: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.product-card-location {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin: 0;
    margin-top: auto;
    margin-bottom: 10px;
    line-height: 1.2;
    flex-shrink: 0;
    align-self: flex-start;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.product-card-link {
  text-decoration: none;
  color: inherit;
}
.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.product-card-link,
.product-card-link * {
  text-decoration: none !important;
}