.elementor-19815 .elementor-element.elementor-element-e6d265c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-57d7672 *//* =========================================================
   CUSTOM SHOP
   AFri General
   WooCommerce + Custom HTML/CSS
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.custom-shop-wrapper {

    --orange: #c45a08;
    --orange-dark: #a94700;
    --orange-light: #fff1e5;

    --dark: #211e1b;
    --text: #332e29;
    --muted: #817870;

    --border: #e7dfd7;

    --cream: #fffaf5;
    --white: #ffffff;

    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 35px;

    width: 100%;

}


/* =========================================================
   SIDEBAR
========================================================= */

.custom-shop-sidebar {

    position: sticky;

    top: 30px;

    align-self: start;

    width: 100%;

    padding: 22px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 14px;

}


/* =========================================================
   SIDEBAR TITLE
========================================================= */

.shop-sidebar-title {

    margin-bottom: 18px;

    padding-bottom: 15px;

    border-bottom:
        1px solid var(--border);

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =========================================================
   CATEGORIES WRAPPER
========================================================= */

.shop-categories {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


/* =========================================================
   CATEGORY BUTTON
========================================================= */

.shop-category {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 40px;

    margin: 0;

    padding: 10px 11px;

    border: none;

    border-radius: 7px;

    outline: none;

    background: transparent;

    color: var(--muted);

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    text-align: left;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        padding-left .25s ease,
        transform .25s ease;
}


/* =========================================================
   CATEGORY HOVER
========================================================= */

.shop-category:hover {

    padding-left: 15px;

    background:
        #ee8135;

    color:
        #fffff;

}


/* =========================================================
   ACTIVE CATEGORY
========================================================= */

.shop-category.active {

    background:
      #ee8135;

    color:
        var(--white);

    box-shadow:
        0 6px 16px
        rgba(196, 90, 8, .15);

}


.shop-category.active:hover {

    padding-left: 11px;

    background:
        #ee8135;

    color:
        var(--white);

}


/* =========================================================
   CATEGORY COUNT
========================================================= */

.shop-category small {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 20px;

    height: 20px;

    padding: 0 5px;

    border-radius: 20px;

    background:
        rgba(33, 30, 27, .06);

    color:
        var(--muted);

    font-size: 8px;

    font-weight: 700;

    line-height: 1;

    transition:
        background .25s ease,
        color .25s ease;
}


.shop-category.active small {

    background:
        rgba(255,255,255,.18);

    color:
        var(--white);

}


/* =========================================================
   PRODUCTS AREA
========================================================= */

.custom-shop-products {

    min-width: 0;

    width: 100%;

}


/* =========================================================
   TOOLBAR
========================================================= */

.custom-shop-toolbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;

    padding-bottom: 15px;

    border-bottom:
        1px solid var(--border);

}


/* =========================================================
   RESULTS COUNT
========================================================= */

.shop-results-count {

    color:
        var(--muted);

    font-size: 10px;

    font-weight: 600;

    line-height: 1.4;

}


/* =========================================================
   SORT
========================================================= */

.shop-sort {

    position: relative;

}


.shop-sort select {

    appearance: none;

    -webkit-appearance: none;

    min-width: 175px;

    height: 40px;

    padding:
        0 35px
        0 13px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    outline: none;

    background:
        var(--white);

    color:
        var(--text);

    font-family: inherit;

    font-size: 9px;

    font-weight: 600;

    cursor: pointer;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.shop-sort::after {

    content: "⌄";

    position: absolute;

    top: 50%;

    right: 13px;

    transform:
        translateY(-55%);

    color:
        var(--muted);

    font-size: 13px;

    pointer-events: none;

}


.shop-sort select:hover {

    border-color:
        rgba(196,90,8,.45);

}


.shop-sort select:focus {

    border-color:
        var(--orange);

    box-shadow:
        0 0 0 3px
        rgba(196,90,8,.08);

}


/* =========================================================
   PRODUCT GRID
========================================================= */

.custom-products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    width: 100%;

    transition:
        opacity .25s ease;
}


/* =========================================================
   LOADING STATE
========================================================= */

.custom-products-grid.loading {

    opacity: .35;

    pointer-events: none;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.custom-product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    min-width: 0;

    overflow: hidden;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius: 16px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.custom-product-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(196,90,8,.35);

    box-shadow:
        0 18px 45px
        rgba(33,30,27,.10);

}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.custom-product-image {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 235px;

    padding: 25px;

    overflow: hidden;

    background:
        var(--cream);

}


/* =========================================================
   IMAGE BACKGROUND CIRCLE
========================================================= */

.custom-product-image::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        rgba(196,90,8,.045);

    transition:
        transform .45s ease;

}


.custom-product-card:hover
.custom-product-image::before {

    transform:
        scale(1.15);

}


/* =========================================================
   IMAGE LINK
========================================================= */

.custom-product-image a {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.custom-product-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;

}


.custom-product-card:hover
.custom-product-image img {

    transform:
        scale(1.06);

}


/* =========================================================
   SALE BADGE
========================================================= */

.custom-product-badge {

    position: absolute;

    z-index: 5;

    top: 14px;

    left: 14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 25px;

    padding:
        5px 9px;

    border-radius: 5px;

    background:
       #ee8135;

    color:
        var(--white);

    font-size: 7px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.custom-product-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 19px;

}


/* =========================================================
   PRODUCT BRAND / CATEGORY
========================================================= */

.custom-product-brand {

    margin-bottom: 7px;

    color:
       #ee8135;

    font-size: 8px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.custom-product-title {

    margin:
        0 0 12px;

    color:
        var(--dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -.3px;

}


.custom-product-title a {

    color:
        inherit;

    text-decoration:
        none !important;

    transition:
        color .2s ease;

}


.custom-product-title a:hover {

    color:
       #ee8135;

}


/* =========================================================
   PRICE
========================================================= */

.custom-product-price {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 11px;

    color:
        var(--dark);

    font-size: 16px;

    font-weight: 800;

    line-height: 1.3;

}


.custom-product-price del {

    color:
        #aaa19a;

    font-size: 10px;

    font-weight: 400;

}


.custom-product-price ins {

    color:
        #ee8135;

    text-decoration:
        none;

}


/* =========================================================
   STOCK
========================================================= */

.custom-product-stock {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 17px;

    color:
        #4e8b5c;

    font-size: 8px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .7px;

    text-transform: uppercase;

}


/* =========================================================
   STOCK DOT
========================================================= */

.stock-dot {

    display: inline-block;

    width: 6px;

    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
       #ee8135;

    box-shadow:
        0 0 0 3px
        rgba(78,139,92,.10);

}


.stock-dot.out {

    background:
        #ee8135;

    box-shadow:
        0 0 0 3px
        rgba(184,50,50,.10);

}


/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.custom-product-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 42px;

    margin-top: auto;

    padding:
        10px 14px;

    border:
        1px solid #ee8135;

    border-radius: 7px;

    outline: none;

    background:
       #ee8135;

    color:
        var(--white) !important;

    font-family: inherit;

    font-size: 8px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .8px;

    text-align: center;

    text-decoration: none !important;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}


.custom-product-button:hover {

    transform:
        translateY(-2px);

    background:
        transparent;

    color:
        #ee8135 !important;

    box-shadow:
        0 5px 15px
        rgba(196,90,8,.10);

}


.custom-product-button span {

    font-size: 13px;

    line-height: 1;

    transition:
        transform .25s ease;

}


.custom-product-button:hover span {

    transform:
        translateX(4px);

}


/* =========================================================
   WOOCOMMERCE AJAX ADDED
========================================================= */

.custom-product-button.added {

    background:
        #4e8b5c;

    border-color:
        #4e8b5c;

}


.custom-product-button.loading {

    opacity: .6;

    pointer-events: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .custom-shop-wrapper {

        grid-template-columns:
            195px
            minmax(0,1fr);

        gap: 22px;

    }


    .custom-products-grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 16px;

    }


    .custom-product-image {

        height: 210px;

    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 900px) {

    .custom-shop-wrapper {

        grid-template-columns:
            180px
            minmax(0,1fr);

        gap: 18px;

    }


    .custom-products-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .custom-shop-wrapper {

        display: block;

        width: 100%;

    }


    /* Sidebar */

    .custom-shop-sidebar {

        position: static;

        margin-bottom: 20px;

        padding: 17px;

    }


    .shop-sidebar-title {

        margin-bottom: 13px;

        padding-bottom: 12px;

    }


    .shop-categories {

        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 5px;

    }


    .shop-category {

        min-height: 38px;

        padding:
            9px 9px;

        font-size: 9px;

    }


    .shop-category:hover {

        padding-left: 9px;

    }


    .shop-category.active:hover {

        padding-left: 9px;

    }


    /* Toolbar */

    .custom-shop-toolbar {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 17px;

    }


    .shop-sort {

        width: 100%;

    }


    .shop-sort select {

        width: 100%;

    }


    /* Products */

    .custom-products-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 12px;

    }


    .custom-product-image {

        height: 175px;

        padding: 15px;

    }


    .custom-product-image::before {

        width: 130px;

        height: 130px;

    }


    .custom-product-content {

        padding: 13px;

    }


    .custom-product-title {

        font-size: 15px;

    }


    .custom-product-price {

        font-size: 14px;

    }


    .custom-product-button {

        min-height: 39px;

        padding:
            9px 10px;

        font-size: 7px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .custom-shop-sidebar {

        padding: 14px;

    }


    .shop-categories {

        grid-template-columns:
            1fr 1fr;

    }


    .custom-products-grid {

        gap: 9px;

    }


    .custom-product-image {

        height: 145px;

        padding: 12px;

    }


    .custom-product-content {

        padding: 11px;

    }


    .custom-product-brand {

        font-size: 7px;

    }


    .custom-product-title {

        font-size: 13px;

        line-height: 1.25;

    }


    .custom-product-price {

        font-size: 13px;

    }


    .custom-product-price del {

        font-size: 9px;

    }


    .custom-product-stock {

        font-size: 7px;

    }


    .custom-product-button {

        min-height: 37px;

        font-size: 6.5px;

    }


    .custom-product-button span {

        font-size: 11px;

    }

}/* End custom CSS */