/*==================================================
FEATURED SHOWCASE
==================================================*/

.cyb-featured-showcase{

    padding:80px 0;

}

.cyb-showcase-layout{

    display:grid;

    grid-template-columns:1.4fr 1fr;

    gap:30px;

    align-items:stretch;

}

.cyb-showcase-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

/*==================================================
FEATURED LARGE CARD
==================================================*/

.cyb-featured-large-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    height:100%;

}

.cyb-featured-large-image{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    height:480px;

    overflow:hidden;

}

.cyb-featured-large-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

}

.cyb-featured-large-card:hover img{

    transform:scale(1.05);

}

.cyb-featured-large-body{

    padding:24px;

}

.cyb-featured-large-price{

    color:#d40018;

    font-size:24px;

    font-weight:700;

    margin-bottom:14px;

}

.cyb-featured-large-body h3{

    font-size:28px;

    line-height:1.4;

    margin-bottom:24px;

}

.cyb-featured-large-body h3 a{

    color:#222;

    text-decoration:none;

}

.cyb-featured-large-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 30px;

    background:#d40018;

    color:#fff;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

}

.cyb-featured-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 28px;

    background:#d40018;

    color:#fff;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

}

.cyb-featured-large img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.cyb-featured-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:35px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

}

.cyb-featured-overlay h2{

    color:#fff;

    font-size:34px;

    margin-bottom:18px;

}

.cyb-featured-btn{

    display:inline-block;

    padding:12px 26px;

    background:#d40018;

    color:#fff;

    border-radius:6px;

    text-decoration:none;

}


.cyb-featured-small{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.3s;

}

.cyb-small-image{

    width:100%;

    height:220px;      /* Size moja kwa picha zote */

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#fff;

}

.cyb-small-image img{

    width:100%;

    height:100%;

    object-fit:contain;   /* Badili kuwa cover kama hutaki nafasi nyeupe */

    transition:.35s;

}

.cyb-featured-small:hover .cyb-small-image img{

    transform:scale(1.05);

}

.cyb-small-body{

    padding:18px;

}

.cyb-small-price{

    color:#d40018;

    font-weight:700;

    margin-bottom:10px;

}

.cyb-small-body h4{

    font-size:16px;

    line-height:1.5;

}

.cyb-small-body a{

    color:#222;

    text-decoration:none;

}

/*==================================================
SMALL PRODUCT CARD
==================================================*/

.cyb-showcase-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.cyb-featured-small-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    overflow:hidden;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.cyb-featured-small-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.cyb-featured-small-image{

    height:190px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    padding:15px;

}

.cyb-featured-small-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

}

.cyb-featured-small-card:hover img{

    transform:scale(1.05);

}

.cyb-featured-small-body{

    padding:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.cyb-featured-small-price{

    color:#d40018;

    font-size:20px;

    font-weight:700;

}

.cyb-featured-small-body h4{

    margin:0;

    font-size:17px;

    line-height:1.5;

    min-height:52px;

}

.cyb-featured-small-body h4 a{

    color:#222;

    text-decoration:none;

}

.cyb-featured-small-sku{

    color:#666;

    font-size:13px;

}



.cyb-featured-large-card,
.cyb-featured-small-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    box-shadow:0 8px 30px rgba(15,23,42,.05);

    transition:.35s;

}

.cyb-featured-large-card:hover,
.cyb-featured-small-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 50px rgba(15,23,42,.04);

}

.cyb-featured-showcase .cyb-view-all-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-top:40px;

}



@media(max-width:991px){

    .cyb-showcase-layout{

        grid-template-columns:1fr;

    }

    .cyb-showcase-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:640px){

    .cyb-showcase-grid{

        grid-template-columns:1fr;

    }

}


/* =========================================
   FEATURED LARGE - IMAGE ONLY
========================================= */

.cyb-showcase-featured{

    height:100% !important;

    min-height:500px !important;

}


.cyb-featured-large-card{

    width:100% !important;

    height:100% !important;

    min-height:500px !important;

    padding:0 !important;

    margin:0 !important;

    border:none !important;

    border-radius:16px !important;

    overflow:hidden !important;

    background:#fff !important;

    box-shadow:none !important;

}


.cyb-featured-large-image{

    display:block !important;

    width:100% !important;

    height:100% !important;

    min-height:500px !important;

    padding:0 !important;

    margin:0 !important;

}


.cyb-featured-large-image img{

    display:block !important;

    width:100% !important;

    height:100% !important;

    min-height:500px !important;

    object-fit:cover !important;

    object-position:center !important;

}


/* BODY HAIPO TENA */

.cyb-featured-large-body{

    display:none !important;

}


/* =========================================
   FEATURED PRODUCTS - MOBILE ONLY
========================================= */

@media (max-width:768px){

    .cyb-showcase-layout{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .cyb-showcase-featured{
        width:100% !important;
        min-height:0 !important;
        height:auto !important;
    }

    .cyb-featured-large-card{
        width:100% !important;
        min-height:0 !important;
        height:auto !important;
        border-radius:12px !important;
    }

    .cyb-featured-large-image{
        width:100% !important;
        height:280px !important;
        min-height:0 !important;
        padding:0 !important;
    }

    .cyb-featured-large-image img{
        width:100% !important;
        height:280px !important;
        min-height:0 !important;
        object-fit:cover !important;
        object-position:center !important;
    }

    .cyb-featured-large-body{
        display:none !important;
    }

}


/* =========================================
   FEATURED SMALL CARDS - MOBILE ONLY
========================================= */

@media (max-width:768px){

    .cyb-showcase-grid{
        display:grid !important;
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
        gap:12px !important;
    }

    .cyb-featured-small-card{
        width:100% !important;
        min-width:0 !important;
        height:auto !important;
        border-radius:10px !important;
    }

    .cyb-featured-small-image{
        width:100% !important;
        height:150px !important;
        min-height:0 !important;
        padding:8px !important;
        box-sizing:border-box !important;
    }

    .cyb-featured-small-image img{
        width:100% !important;
        height:100% !important;
        object-fit:contain !important;
    }

    .cyb-featured-small-body{
        padding:12px !important;
        gap:6px !important;
    }

    .cyb-featured-small-price{
        font-size:16px !important;
    }

    .cyb-featured-small-body h4{
        font-size:14px !important;
        line-height:1.35 !important;
        min-height:0 !important;
    }

    .cyb-featured-small-sku{
        font-size:11px !important;
    }

}