.product-card-price {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    column-gap: 9px;
    width: 100%;
    min-height: 36px
}

.product-card-media{background:#f5eef3}
.product-card-media img{width:100%;height:100%;object-fit:cover;object-position:center}

.product-card-price strong {
    font-size: clamp(21px, 2.4vw, 29px);
    font-weight: 800;
    line-height: 1;
    color: #08033D;
    white-space: nowrap
}

.product-card-price del {
    font-size: 12px;
    white-space: nowrap
}

.product-card-description {
    display: -webkit-box;
    min-height: 32px;
    margin-top: 8px;
    overflow: hidden;
    color: #625e76;
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.product-header-actions{display:flex;align-items:center;gap:8px}
.product-wishlist-link{position:relative;display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#fff;color:#d52c73;font-size:25px;font-weight:700;box-shadow:0 7px 18px rgba(8,3,61,.15)}
.product-wishlist-link span{position:absolute;top:-5px;right:-5px;display:grid;place-items:center;min-width:19px;height:19px;padding:0 4px;border:2px solid #FDCCE6;border-radius:999px;background:#08033D;color:#FDCCE6;font-size:9px}
.wishlist-toggle{position:absolute;z-index:3;top:9px;right:9px;margin:0}
.wishlist-toggle button{display:grid;place-items:center;width:34px;height:34px;padding:0;border:1px solid rgba(255,255,255,.8);border-radius:50%;background:rgba(255,255,255,.88);color:#80778c;font-size:20px;cursor:pointer;box-shadow:0 5px 15px rgba(8,3,61,.2);backdrop-filter:blur(7px)}
.wishlist-toggle button.active{background:#d52c73;color:#fff;animation:heart-pop .25s ease}
.product-card{position:relative;isolation:isolate}
.product-card.product-shine-active::after{content:"";position:absolute;z-index:5;inset:-30%;pointer-events:none;background:linear-gradient(110deg,transparent 35%,rgba(255,255,255,.18) 43%,rgba(255,255,255,.92) 50%,rgba(253,204,230,.45) 57%,transparent 65%);transform:translateX(-110%) rotate(5deg);animation:product-glass-shine .65s ease-out}
@keyframes product-glass-shine{to{transform:translateX(110%) rotate(5deg)}}
@keyframes heart-pop{50%{transform:scale(1.18)}}
@keyframes notification-bump{50%{transform:scale(1.35)}}
.notification-bump{animation:notification-bump .3s ease}

@media(max-width:520px) {
    .product-shell{padding-right:9px;padding-left:9px}
    .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
    .product-card{border-radius:11px}
    .product-card-media{aspect-ratio:1.2/1}
    .product-card-body {
        display: flex;
        min-height: 140px;
        padding: 8px;
        flex-direction: column
    }

    .product-card-body h2 {
        min-height: 30px;
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.35;
        -webkit-line-clamp: 2
    }

    .product-card-price {
        display: flex;
        min-height: 22px;
        flex-direction: row;
        align-items: baseline;
        gap: 5px
    }

    .product-card-price strong {
        max-width: 100%;
        font-size: 20px
    }

    .product-card-price del {
        font-size: 11px
    }

    .product-card-description {
        display: -webkit-box;
        min-height: 25px;
        max-height: 25px;
        margin: 5px 0 0;
        overflow: hidden;
        overflow-wrap: anywhere;
        color: #625e76;
        font-size: 10px;
        line-height: 1.4;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2
    }

    .product-card-stock{margin-top:3px;font-size:10px}
    .add-cart-form{margin-top:auto;padding-top:7px}
    .add-cart-form button{min-height:32px;padding:6px 3px;font-size:11px;line-height:1.15}
    .discount-badge{top:7px;left:7px;padding:4px 8px;border-radius:999px;font-size:9px;line-height:1;font-weight:800}
    .wishlist-toggle{top:5px;right:5px}
    .wishlist-toggle button{width:27px;height:27px;font-size:15px}
}
