.productcard {
    border: 1px solid #ECECEC;
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 14px 19px;
    min-height: 411px !important;
    transition: all 0.5s;
}

.productcard-cat-nootropics:hover {
    border: 1px solid #1B75BC;
    box-shadow: 0 0 20px #1B75BC33;
}

.productcard-cat-amino-acids:hover {
    border: 1px solid #E2552D;
    box-shadow: 0 0 20px #E2552D33;
}

.productcard-cat-herbal-extracts:hover {
    border: 1px solid #299E7F;
    box-shadow: 0 0 20px #299E7F33;
}

.productcard.outofstock{
    border: 1px solid #ECECEC;
    outline: 2px solid #ECECEC;
}

.productcard.outofstock>img,
.productcard.outofstock .productcard-details-title,
.productcard.outofstock .productcard-price{
    opacity: 0.55;
}

.productcard.outofstock .productcard-actions .btn{
    width: 100%;
}

.productcard>img {
    height: 280px;
    margin: 0 auto;
    object-fit: cover;
    max-width: 100%;
}

.productcard-details {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: calc(100% - 24px);
    mask: linear-gradient(to top, black 50%, black, transparent);
    backdrop-filter: blur(14px);
    padding: 53px 0 0;
    text-align: left;
    padding: 64px 12px 12px;
}

.productcard-outofstock{
    background: #ECECEC;
    line-height: 32px;
    height: 32px;
    padding: 0 11px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    border-radius: 20px;
    margin: 13px 0 -10px 11px;
    z-index: 1;
    position: relative;
}

.productcard-wish{
    position: absolute;
    background: url(/wp-content/themes/biohacking-redesign/img/icons/hdr-icons-wishes-primary.png) no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-size: 20px;
    cursor: pointer;
    top: 14px;
    right: 12px;
    
}

.productcard-wish.active,
.productcard-wish:hover{
    background-image: url(/wp-content/themes/biohacking-redesign/img/icons/hdr-icons-wishes-primary-fill.png);
}

.productcard-cat {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    margin: 15px 11px 0px;
}

.productcard-cat::before {
    content: "";
    width: 24px;
    height: 24px;
    background-position: center !important;
}

.productcard-cat-nootropics .productcard-cat {
    color: #1B75BC;
}

.productcard-cat-herbal-extracts .productcard-cat{
    color: #299E7F;
}

.productcard-cat-amino-acids .productcard-cat {
    color: #EC1D2E;
}

.productcard-cat-nootropics .productcard-cat::before {
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-cat-nootropics.svg) no-repeat;
}

.productcard-cat-herbal-extracts .productcard-cat::before {
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-cat-herbal.svg) no-repeat;
}

.productcard-cat-amino-acids .productcard-cat::before {
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-cat-amino.svg) no-repeat;
}


.productcard-details {

}

.productcard-details-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.productcard-details-title .rating{
    display: inline-flex;
    gap: 3px;
    align-items: baseline;
    margin-left: 7px;
}
.productcard-details-title .rating::before{
    content: "";
    width: 13px;
    height: 13px;
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-star.svg) center no-repeat;
}



.productcard-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.productcard-price del {
    font-size: 14px;
    font-weight: 400;
    color: #767676;
}

.productcard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productcard-actions .actions-addtocart {
    width: calc(100% - 52px);
}

.productcard-actions .btn-buy{
    width: 100%;
}

.addtocart{
    position: relative;
}

.addtocart-icon{
    width: 48px;
    height: 48px;
    background: #F16323 url(/wp-content/themes/biohacking-redesign/img/icons/hdr-icons-cart-white.png) center center / 24px  no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
    opacity: 0;
    border-radius: 100px;
    z-index: 9999999;
}

.actions-view {
    width: 42px;
    height: 42px;
    display: flex;
    border: 1px solid var(--primary);
    background: url(/wp-content/themes/biohacking-redesign/img/icons/icon-eye.svg) center / 20px no-repeat;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.5s;
}

.actions-view:hover {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .productcard {
        margin: 14px 8px;
        width: calc(50% - 18px);
    }
}

@media (max-width: 480px) {
    .productcard {
        width: 100%;
    }
}
