/* MAIN SECTION */
.rk-prod-sec{
    position:relative;
    background:#F8F3EB;
    padding:25px 15px;
    overflow:hidden;
}

/* 🔥 JALI OVERLAY */
.rk-prod-sec::before{
    content:"";
    position:absolute;
    inset:0;

    background:url('https://www.transparenttextures.com/patterns/arabesque.png');

    opacity:0.4; /* adjust visibility */
    pointer-events:none;

    z-index:0;
}

/* CONTENT ABOVE JALI */
.rk-prod-sec > *{
    position:relative;
    z-index:1;
}

/* CARD */
.rk-prod-card{
    min-width:220px;
    max-width:220px;
    background:#fff;
    border-radius:18px;
    padding:14px; /* 🔥 12 → 14 */
    display:flex;
    flex-direction:column;
    height:450px; /* 🔥 thoda height increase */
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    gap:4px; /* 🔥 uniform spacing */
    
}

.rk-prod-head{
    padding-top: 15px;
}

/* IMAGE */
.rk-img{
    background:#F9F4EC;
    height:150px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:8px; /* 🔥 ADD THIS */
}

.rk-img img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

/* TITLE (NO CUT ISSUE FIX) */
/* TITLE */
.rk-title{
    font-size:13px;
    margin:6px 0 6px; /* 🔥 balanced */
    line-height:1.4;
    min-height:54px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

   
}

/* ⭐ RATING */
.rk-rating{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    margin-bottom:8px; /* 🔥 नीचे gap equal */
    color: orange;
    margin:4px 0; /* 🔥 equal spacing */
}

/* PRICE */
.rk-price{
    font-size:14px;
    margin-bottom:10px; /* 🔥 equal spacing */
    margin:4px 0 10px; /* 🔥 top + bottom balance */
}


/* BUTTONS (NO GAP ISSUE FIX) */
.rk-btns{
    margin-top:auto;
    padding-top:6px; /* 🔥 ADD THIS (main fix) */
    display:flex;
    flex-direction:column;
    gap:8px;
}

/* BUTTON */
.btn{
    height:36px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.amz{background:#000;}
.fk{background:#2874f0;}
.myn{background:#ff3f6c;}

.btn:hover{
    opacity:0.9;
}

/* CURRENT PRICE (GREEN + BOLD) */
.rk-price .current{
    color:#1B5D33; /* dark green premium */
    font-weight:700;
    font-size:15px;
}

/* MRP (CUT / STRIKE) */
.rk-price .mrp{
    text-decoration:line-through;
    color:#999;
    margin-left:6px;
    font-size:13px;
}

/* DISCOUNT (RED LIKE AMAZON) */
.rk-price .off{
    color:#e60023; /* Amazon red style */
    font-weight:600;
    margin-left:6px;
    font-size:13px;
}

.rk-slider-wrap{
    position:relative;
    margin-bottom:15px; /* 🔥 नीचे gap */
}

/* FIXED NAV */
.rk-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    font-size:20px;
    padding:10px 14px;
    cursor:pointer;
    box-shadow:0 3px 12px rgba(0,0,0,0.2);
    border-radius:50%;
    z-index:10;
}

.left{
    left:5px; /* 🔥 -15 hatao */
}

.right{
    right:5px; /* 🔥 -15 hatao */
}

.rk-prod-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scroll-behavior:smooth;

    padding:10px 15px; /* 🔥 LEFT RIGHT GAP FIX */
}

.rk-prod-sec{
    background:#F8F3EB;
    padding:25px 15px; /* 🔥 top-bottom + left-right space */
}

.rk-prod-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 15px;

    scrollbar-width:none; /* Firefox */
}

.rk-prod-slider::-webkit-scrollbar{
    display:none; /* Chrome, Edge, Safari */
}

.rk-slider-wrap{
    overflow:hidden; /* extra safety */
}

/* MOBILE */
@media(max-width:768px){

    .rk-prod-card{
        min-width:180px;
        max-width:180px;
        height:420px; /* 🔥 increase */
        padding:12px;
    }

    .rk-img{
        height:130px;
        margin-bottom:6px;
    }

    .rk-title{
        margin:6px 0;
    }

    .rk-rating{
        margin:4px 0;
    }

    .rk-price{
        margin:4px 0 8px;
    }

    .rk-btns{
        padding-top:5px; /* 🔥 spacing fix */
    }



     .rk-prod-sec{
        padding:20px 10px; /* 🔥 tighter but clean */
    }

    .rk-prod-slider{
        padding:10px 10px; /* 🔥 mobile side gap */
    }
}