.product-card-v2 {
    position: relative;
    background: #fff;
    /* border-radius: 24px; */
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid rgba(0, 0, 0, .05);
    height: 100%;
}

.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.product-media {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image {
    width: 100%;
    /* aspect-ratio: 1 / 1.15; */
    object-fit: cover;
    transition: all .7s ease;
}

.product-card-v2:hover .product-image {
    transform: scale(1.06);
}

.product-card-v2:hover .frame-top {
    transform: scale(1.06);
    top: -10px;
}

.product-card-v2:hover .frame-bottom {
    transform: scale(1.06);
    bottom: -10px;
}

.product-actions {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .3s ease;
}

/* DESKTOP */
@media(min-width: 992px) {

    .product-actions {
        opacity: 0;
        transform: translateX(-10px);
    }

    .product-card-v2:hover .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE + TABLET */
@media(max-width: 991.98px) {

    .product-actions {
        opacity: 1;
        transform: none;
    }
}

/* MOBILE */
@media(max-width:576px) {

    .circle-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .product-actions {
        gap: 7px;
        top: 10px;
        left: 10px;
    }
}

.product-card-v2:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.circle-btn,
.circle-btn:active {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    color: #1e4384;
    transition: all .25s ease;
}

.circle-btn:hover {
    background: #1e4384;
    color: #fff;
    outline: 0;
}

.circle-btn:focus,
.circle-btn:active,
.circle-btn.focus,
.circle-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.wishlist-btn {
    color: #dc3545;
}

.wishlist-btn:hover {
    background: #dc3545;
}

.discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #dc3545;
    color: #fff;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 22px;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
}

.product-title {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 14px;
}

.product-title a {
    color: #1e4384;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    min-height: 40px;
    position: relative;
}

.old-price {
    color: #aaa;
    text-decoration: line-through;
    font-size: 14px;
    position: absolute;
    top: -10px;
}

.new-price {
    font-size: 20px;
    font-weight: 800;
    color: #1e4384;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 14px;
    background: #1e4384;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.product-btn:hover {
    background: #222;
    color: #fff;
    text-decoration: none;
}

.color-mini-list {
    bottom: -3px;
}

.compare-btn.btn-primary {
    background-color: #1c4386;
    color: #fff;
    border-color: #1c4386;
}