/* =========================================
   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;
}


/* =========================================
   SALE BADGE
========================================= */

.kano-product-sale-badge{
    position:absolute;
    top:12px;
    right:12px;

    z-index:20;

    padding:7px 10px;

    border-radius:999px;

    background:#cf2e2e;
    color:#fff;

    font-size:12px;
    font-weight:600;
    line-height:1;

    white-space:nowrap;
}


/* =========================================
   PRODUCT BADGES
========================================= */

.kano-product-badges{
    position:absolute;

    top:12px;
    left:12px;

    z-index:15;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:6px;

    max-width:calc(100% - 24px);
}


/* =========================================
   BADGE
========================================= */

.kano-product-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:7px 10px;

    border-radius:999px;

    font-size:12px;
    font-weight:600;
    line-height:1;

    color:#fff;

    white-space:nowrap;

    backdrop-filter:blur(4px);
}


/* =========================================
   BADGE COLORS
========================================= */

.kano-product-badge.author{
    background:#c08b5c;
}

.kano-product-badge.new{
    background:#3f7d47;
}

.kano-product-badge.hit{
    background:#d97706;
}

.kano-product-badge.limited{
    background:#4b5563;
}

.kano-product-badge.gift{
    background:#8b5cf6;
}

.kano-product-badge.production{
    background:#0f766e;
}

.kano-product-badge.handmade{
    background:#92400e;
}

.kano-product-badge.last{
    background:#6b1f1f;
}


/* =========================================
   VIDEO BADGE
========================================= */

.kano-product-badges .kano-product-badge.video.is-video{
    width:30px;
    height:30px;

    min-width:30px;
    min-height:30px;

    padding:0;

    border-radius:50%;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(8px);
}

.kano-product-badges .kano-product-badge.video.is-video svg{
    width:18px;
    height:18px;

    fill:#fff;

    margin-left:2px;
}

/* =========================================
   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;
}





/* =========================================
   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;
    }




}
@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;
    }

}


.kano-product-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 10px;
}

.kano-product-stock{
    display: flex;
    align-items: center;
    gap: 6px;

    flex-shrink: 0;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kano-product-stock-dot{
    width: 7px;
    height: 7px;

    border-radius: 50%;
}

/* В наявності */

.kano-product-stock.in-stock{
    color: #4d7c57;
}

.kano-product-stock.in-stock
.kano-product-stock-dot{
    background: #4d7c57;
}

/* Передзамовлення */

.kano-product-stock.preorder{
    color: #b7791f;
}

.kano-product-stock.preorder
.kano-product-stock-dot{
    background: #b7791f;
}

/* Немає */

.kano-product-stock.out-of-stock{
    color: #9b9b9b;
}

.kano-product-stock.out-of-stock
.kano-product-stock-dot{
    background: #9b9b9b;
}


@media (max-width: 768px){

    .kano-product-meta{
        display: block;
        margin-bottom: 8px;
    }

    .kano-product-stock{
        margin-top: 8px;

        font-size: 10px;

        text-transform: none;
        letter-spacing: 0;
    }
/* badges */

.kano-product-sale-badge{
    top:14px;
    right:8px;

    padding:6px 9px;

    font-size:10px;
}

.kano-product-badges{
    top:14px;
    left:10px;

    gap:5px;

    max-width:calc(100% - 20px);
}

.kano-product-badge{
    padding:6px 9px;

    font-size:10px;
}

/* video */

.kano-product-badges .kano-product-badge.video.is-video{
    width:30px;
    height:30px;

    min-width:30px;
    min-height:30px;
}

.kano-product-badges .kano-product-badge.video.is-video svg{
    width:14px;
    height:14px;
}

/* last badge */

.kano-product-badge.last{
    font-size:0;
}

.kano-product-badge.last::before{
    content:"Остання колода";

    font-size:9px;
    font-weight:600;
    line-height:1;
}


}


