/* =========================================================
    PREMIUM WHITE PRODUCT CARD
========================================================= */

.fashion-product-card {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    background: #fff;
}

/* IMAGE */
.fashion-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 3;
    background: #f6f6f6;
    border-radius: 4px;
}

.fashion-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.fashion-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.fashion-product-card:hover
.fashion-product-image img {
    transform: scale(1.04);
}


/* DISCOUNT */
.fashion-product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    background: #282c3f;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
}


/* WISHLIST */

.fashion-product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: #282c3f;
    font-size: 19px;
    cursor: pointer;
    transition: all .2s ease;
}

.fashion-product-wishlist:hover {
    color: #ff3f6c;
    border-color: #ff3f6c;
}

/* DETAILS */
.fashion-product-details {
    padding: 12px 2px 0;
}

/* BRAND */
.fashion-product-brand {
    margin-bottom: 4px;
    color: #282c3f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}


/* TITLE */
.fashion-product-title {
    margin: 0 0 7px !important;
    padding: 0 !important;
    min-height: 36px;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fashion-product-title a {
    color: #282c3f;
    text-decoration: none;
}

.fashion-product-title a:hover {
    color: #ff3f6c;
}

/* RATING */
.fashion-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 7px;
    padding: 3px 6px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #282c3f;
    font-size: 10px;
    font-weight: 600;
}

.fashion-product-rating .rating-star {
    color: #149447;
}

/* PRICE */
.fashion-product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.fashion-sale-price {
    color: #282c3f;
    font-size: 14px;
    font-weight: 700;
}

.fashion-regular-price {
    color: #94969f;
    font-size: 11px;
    text-decoration: line-through;
}

.fashion-discount-text {
    color: #ff905a;
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
    VIEW DETAILS BUTTON
========================================================= */
.fashion-view-product {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    margin-top: 8px;
    padding: 0 12px;
    border: 1px solid #282c3f;
    border-radius: 3px;
    background: #fff;
    color: #282c3f !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .25s ease;
}

/* Hover */
.fashion-view-product:hover {
    background: #282c3f;
    color: #fff !important;
    border-color: #282c3f;
}

/* =========================================================
    ADD TO BAG
========================================================= */
.fashion-product-details .add_to_cart_button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    margin-top: 8px;
    padding: 0 12px;
    border: 1px solid #282c3f;
    border-radius: 3px;
    background: #fff;
    color: #282c3f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    transition: all .25s ease;
}

.fashion-product-details .add_to_cart_button:hover {
    background: #282c3f;
    color: #fff;
}

/* =========================================================
    CARD HOVER
========================================================= */
.fashion-product-card {
    transition: transform .25s ease;
}

.fashion-product-card:hover {
    transform: translateY(-2px);
}

/* =========================================================
    GRID
========================================================= */
.fashion-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 20px;
}

/* =========================================
    FASHION STORE - MODERN PAGINATION
========================================= */
.fashion-pagination {
    margin-top: 35px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 5px;
    border-radius: 5px;
    font-size: 15px;
    font-family: fangsong;
    font-weight: bolder;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current{
    background: #c7d5dc;
    color: #000;
    border: 1px dotted;
}

/* =========================================================
    FILTER APPLY BUTTON
========================================================= */
.filter-apply {
    width: 100%;
    height: 42px;
    border: 1px solid #282c3f;
    background: #282c3f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

.filter-apply:hover {
    background: #fff;
    color: #282c3f;
}

/* =========================================================
    MOBILE
========================================================= */

@media (max-width: 1100px) {
    .fashion-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fashion-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 12px;
    }
    .fashion-product-title {
        font-size: 12px !important;
    }
    .fashion-sale-price {
        font-size: 13px;
    }
}

