.product-card {
position: relative;
        background: #fff;
        border-radius: 6px;
        padding: 0 0 12px;
        overflow: hidden;
        min-width: 0;
}

.product-card img {
width: 100%;
        aspect-ratio: 1.23/1;
        object-fit: cover;
        background: #f7f7f8;
}

.product-card h3 {
font-size: 14px;
        font-weight: 500;
        margin: 9px 10px 7px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.price {
color: #ff445e;
        font-size: 20px;
        font-weight: 800;
        margin: 0 10px 3px;
}

.product-card del {
font-size: 12px;
        color: #9a9da6;
        margin: 0 10px;
}

.discount {
position: absolute;
        z-index: 3;
        left: 7px;
        top: 7px;
        background: #ff405a;
        color: #fff;
        width: 45px;
        height: 45px;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
        text-align: center;
        padding-top: 4px;
        font-size: 10px;
        line-height: 1;
}

.discount b {
font-size: 15px;
}

.selling-pill {
margin: 8px 8px 0;
        background: linear-gradient(90deg, #ff8fa1, #ffc2ca);
        border-radius: 999px;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
        padding: 4px 8px;
}

@media (max-width: 720px) {
.product-card {
border-radius: 6px;
}

.product-card img {
aspect-ratio: 1/1;
}

.product-card h3 {
display: none;
}

.discount {
left: 2px;
          top: 2px;
          width: 38px;
          height: 38px;
          font-size: 8px;
}

.discount b {
font-size: 12px;
}

.price {
font-size: 16px;
          margin: 8px 3px 3px;
}

.product-card del {
font-size: 10px;
          margin: 0 3px;
}

.selling-pill {
margin: 6px 2px 0;
          font-size: 9px;
          padding: 3px;
}
}
