
    /* =========================================================
   PRODUCT CARD
========================================================= */

.hw-pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}


/* =========================================================
   MEDIA
========================================================= */

.hw-pcard__media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f1ef;
}

.hw-pcard__media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    border-radius: inherit;
}

.hw-pcard__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition:
        opacity 0.45s ease,
        transform 0.6s ease;
}

.hw-media__primary {
    opacity: 1;
    z-index: 1;
}

.hw-media__secondary {
    opacity: 0;
    z-index: 2;
}


/* IMAGE HOVER */

@media (hover: hover) {

    .hw-pcard:hover .hw-media__primary {
        transform: scale(1.04);
    }

    .hw-pcard:hover .hw-media__secondary {
        opacity: 1;
        transform: scale(1.04);
    }

}


/* =========================================================
   BADGES
========================================================= */

.hw-pcard__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}


/* BEST SELLER CIRCLE */

.hw-sticker {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5a5b7;
    color: #59132d;

    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.15;
    font-weight: 700;

    text-align: center;
    text-transform: uppercase;
}


/* SALE BADGE */

.hw-badge--sale {
    display: inline-flex;
    align-items: center;

    padding: 7px 9px;

    border-radius: 30px;

    background: #f3a037;
    color: #2a0c00;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   WISHLIST
========================================================= */

.hw-pcard .hw-pcard__wish,
.hw-pcard .ftwl-button {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 10;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(90, 20, 45, 0.12);
    border-radius: 50%;

    background: #fff;
    color: #2a0c00;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hw-pcard .hw-pcard__wish:hover,
.hw-pcard .ftwl-button:hover {
    background: transparent;
    color: #fff;
    transform: scale(1.05);
}


/* =========================================================
   QUICK ACTION BAR
========================================================= */

.hw-pcard__quick {
    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 10px;

    z-index: 8;

    padding: 11px;

    border-radius: 12px;

    background: rgba(255, 252, 248, 0.95);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* SHOW ON HOVER */

@media (hover: hover) {

    .hw-pcard:hover .hw-pcard__quick,
    .hw-pcard:focus-within .hw-pcard__quick {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SIZES
========================================================= */

.hw-pcard .hw-pcard__sizes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hw-pcard .hw-pcard__size {
    min-width: 20px;
    height: 30px;

    padding: 0 10px;

    border: 1px solid #dfd2ca;
    border-radius: 5px;

    background: #fff;
    color: #594d4b;

    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.hw-pcard .hw-pcard__size:hover {
    background: #f3a037;
    border-color: #2a0c00;
    color: #fff;
}

.hw-pcard .hw-pcard__size.is-disabled,
.hw-pcard .hw-pcard__size:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}


/* =========================================================
   QUICK VIEW
========================================================= */

.hw-pcard .hw-pcard__quickview {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 0px;

    padding: 8px 0;

    border: 0;
    background: transparent;

    color: #2a0c00;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;
}
.hw-pcard .hw-pcard__quickview_variable{margin-top:10px !important;}
.hw-pcard .hw-pcard__quickview:hover {
    color: #4d102c;
    background: #f3a037;
}

.hw-eye-icon {
    font-size: 14px;
}


/* =========================================================
   BODY
========================================================= */

.hw-pcard__body {
    display: flex;
    flex-direction: column;
    gap: 7px;

    padding: 15px 2px 0;
}


/* =========================================================
   TITLE
========================================================= */

.hw-pcard__title {
    margin: 0;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.hw-pcard__title a {
    display: block;

    color: #2a0c00;
    text-decoration: none;

    transition: color 0.2s ease;
}

.hw-pcard__title a:hover {
    color: #4d102c;
}


/* =========================================================
   PRICE
========================================================= */

.hw-pcard__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.hw-pcard__price-now {
    color: #2a0c00;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.hw-pcard__price-now .woocommerce-Price-currencySymbol {
    margin-right: 3px;
}

.hw-pcard__price-was {
    color: #777;

    font-size: 10px;
    font-weight: 400;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {

    .hw-pcard__media-wrap {
        border-radius: 15px;
    }

    .hw-pcard__badges {
        top: 10px;
        left: 10px;
    }

    .hw-sticker {
        width: 48px;
        height: 48px;
        font-size: 8px;
    }

    .hw-badge--sale {
        padding: 6px 13px;
        font-size: 11px;
    }

    .hw-pcard .hw-pcard__wish,
    .hw-pcard .ftwl-button {
        top: 10px;
        right: 10px;

        width: 42px;
        height: 42px;
    }

    .hw-pcard__quick {
           left: 9px;
    right: 9px;
    bottom: 15px;
    padding: 5px;
    }

    .hw-pcard .hw-pcard__size {
            min-width: 25px;
    height: 25px;
    padding: 0 8px;
    font-size: 10px;
    }

    .hw-pcard .hw-pcard__quickview {
        font-size: 11px;
        margin-top: 0px;
    }

    .hw-pcard__body {
        padding-top: 11px;
    }

    .hw-pcard__title {
        font-size: 14px;
    }

    .hw-pcard__price-now {
        font-size: 17px;
    }

    .hw-pcard__price-was {
        font-size: 12px;
    }
    /*.hw-pcard__quick{opacity:1;}*/
    .hw-pcard__quickview{display:none;}
}



.hw-pcard .hw-pcard__size:focus,.hw-pcard .hw-pcard__size.is-selected {
    background: #f3a037 !important;
    border-color: #2a0c00 !important;
    color: #fff !important;
}

.hw-pcard .hw-pcard__quickview.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.hw-cart-error {
    margin-top: 7px;
    width: 100%;
    padding: 7px 10px;

    border-radius: 5px;

    background: #fff0f0;
    color: #a21d1d;

    font-size: 11px;
    text-align: center;
}

.hw-select-error {
    animation: hw-shake 0.3s ease;
}

@keyframes hw-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

}



/* Hide added to cart link */
.woocommerce ul.products li.product .added_to_cart{
    display:none !important;
}
.premium-product{
    position:relative;
    overflow:hidden;
}
.premium-product h2,.premium-product span.price{
    padding: 5px 0.5em !important;
}


.premium-product:hover .main-image{
    opacity:0;
}

.premium-product:hover .second-image{
    opacity:1;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after{
    content: none !important;
    display: none !important;
}

.woocommerce ul.products li.product a img{margin:0;}


@media (max-width:767px){

.woocommerce ul.products.columns-2,
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4,
.woocommerce ul.products.columns-5,
.woocommerce ul.products.columns-6{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:15px !important;
}

.woocommerce ul.products li.product{
    width:100% !important;
    max-width:100% !important;
    flex:none !important;
    float:none !important;
}

}
.woocommerce ul.products{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;}

.woocommerce.columns-5 ul.products li.product{width:100% !important;}

.woocommerce ul.products li.product{margin:0 !important;}
