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

.woocommerce ul.products{
    display:grid !important;

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

    gap:24px !important;

    margin:0 !important;
    padding:0 !important;

    list-style:none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after{
    display:none !important;
    content:none !important;
}

.woocommerce ul.products li.product{
    width:auto !important;

    min-width:0 !important;
    max-width:none !important;

    margin:0 !important;
    padding:0 !important;

    float:none !important;
    clear:none !important;

    display:block !important;
}


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

.kano-product-card{
    position:relative;

    display:flex !important;
    flex-direction:column;

    height:100%;

    overflow:hidden;

    border-radius:18px;

    background:#f8f4ed;

    border:1px solid #e8dcc8;

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


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

.kano-product-image{
    position:relative;

    display:block;

    aspect-ratio:1 / 1.08;

    overflow:hidden;

    background:#a5a38d;
}

.kano-product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform .7s ease,
    filter .5s ease;
}


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

.kano-product-content{
    display:flex;
    flex-direction:column;

    flex:1;

    padding:16px 16px 18px;
}


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

.kano-product-category{
    margin-bottom:8px;

    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;

    color:#a48a5d;
}

.kano-product-category a{
    color:inherit;
    text-decoration:none;
}


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

.kano-product-title{
    margin:0 0 12px;

    font-size:22px;
    line-height:1.2;
    font-weight:400;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:52px;
}

.kano-product-title a{
    color:#2a241f;
    text-decoration:none;
}


/* =========================================
   PRICE + BUTTON ROW
========================================= */

.kano-product-bottom{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:14px;

    margin-top:auto;
}


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

.kano-product-price{
    display:flex;
    align-items:flex-end;
    gap:10px;

    margin-bottom:0;

    font-size:20px;
    font-weight:500;

    color:#7d6337;
}

.kano-product-price del{
    opacity:.45;

    margin:0;

    font-size:14px;
    line-height:1;
}

.kano-product-price ins{
    text-decoration:none;

    line-height:1;
}


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

.kano-product-button-wrap .button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    height:38px;

    padding:0 16px !important;

    border-radius:8px !important;

    border:1px solid #d8c29a !important;

    background:transparent !important;

    color:#9b7a46 !important;

    font-size:12px !important;
    font-weight:500;

    white-space:nowrap;

    box-shadow:none !important;

    transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.kano-product-button-wrap .button:hover{
    background:#9b7a46 !important;

    color:#fff !important;

    border-color:#9b7a46 !important;
}


/* =========================================
   BADGES
========================================= */

.kano-product-badge{
    position:absolute;

    top:12px;
    left:12px;

    z-index:5;

    display:inline-flex;
    align-items:center;

    min-height:26px;

    padding:0 10px;

    border-radius:4px;

    color:#fff;

    font-size:10px;
    font-weight:700;

    text-transform:uppercase;
}

.kano-product-badge.sale{
    background:#c53b32;
}


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

.kano-product-card:hover{
    transform:translateY(-4px);

    border-color:#d8c29a;

    box-shadow:
    0 10px 24px rgba(0,0,0,.06);
}

.kano-product-card:hover .kano-product-image img{
    transform:scale(1.03);
}


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

@media (max-width: 992px){

    .woocommerce ul.products{
        grid-template-columns:
        repeat(2,minmax(0,1fr)) !important;

        gap:18px !important;
    }

    .kano-product-title{
        font-size:18px;
    }

    .kano-product-price{
        font-size:18px;
    }
}


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

@media only screen and (max-width: 768px){

    /* FULL WIDTH LAYOUT */

    body.woocommerce #primary,
    body.woocommerce-page #primary,
    body.woocommerce #main,
    body.woocommerce-page #main,
    body.woocommerce .content-area,
    body.woocommerce-page .content-area{
        width:100% !important;
        max-width:100% !important;

        padding:0 !important;
        margin:0 !important;

        float:none !important;
    }

    body.woocommerce #secondary,
    body.woocommerce-page #secondary{
        display:none !important;
    }


    /* PRODUCTS GRID */

    ul.products.oceanwp-row{
        display:grid !important;

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

        gap:10px !important;

        width:100% !important;

        padding:0 0px !important;
        margin:0 !important;

        box-sizing:border-box !important;
    }


    /* REMOVE OCEANWP COLUMNS */

    ul.products.oceanwp-row li.product,
    ul.products.oceanwp-row li.product.col,
    ul.products.oceanwp-row li.product.mobile-col,
    ul.products.oceanwp-row li.product.tablet-col,
    ul.products.oceanwp-row li.product.product{
        width:100% !important;
        max-width:100% !important;

        min-width:0 !important;

        flex:none !important;
        flex-basis:auto !important;

        margin:0 !important;
        padding:0 !important;

        float:none !important;

        box-sizing:border-box !important;
    }

    ul.products.oceanwp-row li.product[class*="col-"]{
        width:100% !important;
    }


    /* CARD */

    .kano-product-card{
        width:100% !important;

        border-radius:4px;
    }


    /* IMAGE */

    .kano-product-image{
        aspect-ratio:1 / 1.28;
    }


    /* CONTENT */

    .kano-product-content{
        padding:10px;
    }


    /* CATEGORY */

    .kano-product-category{
        margin-bottom:4px;

        font-size:12px;
        letter-spacing:.8px;
    }


    /* TITLE */

.kano-product-title{
    margin:0 0 8px;

    font-size:16px;
    line-height:1.2;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:38px;
}


    /* PRICE + BUTTON */

.kano-product-bottom{
    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:6px;

    margin-top:auto;
}


    /* PRICE */

    .kano-product-price{
        font-size:18px;
min-height:40px;
    }

    .kano-product-price del{
        font-size:10px;
    }


    /* BUTTON */

    .kano-product-button-wrap{
        width:100%;
    }

    .kano-product-button-wrap .button{
        width:100% !important;

        height:32px;

        padding:0 8px !important;

        border-radius:6px !important;

        font-size:12px !important;
    }


    /* BADGE */

    .kano-product-badge{
        top:6px;
        left:6px;

        min-height:18px;

        padding:0 6px;

        font-size:9px;
    }

}
@media (max-width: 768px){

    body.woocommerce #primary,
    body.woocommerce-page #primary,
    body.woocommerce .content-area,
    body.woocommerce-page .content-area,
    body.woocommerce .site-main,
    body.woocommerce-page .site-main,
    body.woocommerce .container,
    body.woocommerce-page .container{

        width:100% !important;
        max-width:100% !important;

        padding-left:5px !important;
        padding-right:5px !important;

        margin-left:0 !important;
        margin-right:0 !important;
    }

}

