.bjpb-wrap {
    padding:;
    position: relative;
    --bjpb-gap: 20px;
}

.bjpb-bg {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

.bjpb-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: var(--bjpb-gap);
    align-items: stretch; /* Align items for equal height */
}

/* Sidebar */
.bjpb-sidebar {
    flex: 0 0 25%; /* Adjust as needed */
    display: flex;
    flex-direction: column;
	padding-top: 60px;
}

.bjpb-sidebar-head,
.bjpb-sidebar-foot {
    flex-shrink: 0;
}

.bjpb-sidebar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 15px 10px;
}

.bjpb-ico {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.bjpb-ico i {
    transition: transform 0.3s ease;
}

.bjpb-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bjpb-features {
    padding: 0 15px;
    flex-grow: 1;
}
.bjpb-feature, .bjpb-cell {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center; /* Vertical alignment */
    min-height: 50px; /* Ensure consistent row height */
}

.bjpb-feature:last-child,
.bjpb-cell:last-child {
    border-bottom: none;
}

/* Slider */
.bjpb-slider {
    flex: 1 1 auto;
    min-width: 0; 
    overflow: hidden; 
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;	
	padding-left:10px;
	padding-right:10px;
}

.bjpb-track {
    display: flex;
    gap: var(--bjpb-gap);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Card */
.bjpb-card {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s, margin 0.3s, padding 0.3s;
}

.bjpb-card-head {
    padding: 24px 24px 12px;
    flex-shrink: 0;
}
.bjpb-title { margin: 0; }

.bjpb-rows {
    padding: 0 10px;
    flex-grow: 1;
}

.bjpb-card-foot {
    padding: 20px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.bjpb-btn {
    display: inline-block;
    text-decoration: none;
    border: 2px solid;
    border-radius: 999px;
    padding: 10px 22px;
    transition: 0.25s ease;
    cursor: pointer;
}

/* Price Layout */
.bjpb-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}
.bjpb-price-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
}
.bjpb-cur { font-size: 0.8em; }
.bjpb-prfx { font-size: 0.7em; opacity: 0.8; }
.bjpb-amt { font-weight: 700; margin: 0 4px; }
.bjpb-sfx { font-size: 0.8em; opacity: 0.8; align-self: flex-end; }


/* Slider Controls */
.bjpb-controls {
    position: relative;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.bjpb-arrow {

    background: none;
    border: 0;
    cursor: pointer;
    z-index: 5;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
    z-index:9;
}
.bjpb-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.bjpb-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.bjpb-dots button {
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}
.bjpb-dots button.is-active {
    /* Active color set by Elementor control */
}
.bjpb-prev  {position:absolute!important;left:-25px;!important;top:calc(50% - 25px);width:25px!important;height:25px!important;z-index:3;fill:white;}
.bjpb-next  {position:absolute!important;right:-25px;!important;top:calc(50% - 25px);width:25px!important;height:25px!important;z-index:3;fill:white;}

/* Responsive */
@media (max-width: 1024px) {
	.bjpb-slider {	
		overflow:visible;

}
    .bjpb-inner {
        flex-direction: column;
    }
    .bjpb-sidebar {
        display: none;
    }
    .bjpb-cell {
        display: flex;
       flex-direction: column;
        justify-content: space-between; /* Align label and value */
        align-items: center;
        gap: 5px;
    }
    .bjpb-cell:before {
        content: attr(data-label);
        font-weight: 300;
        opacity: 0.8;
        flex-shrink: 0; /* Prevent label from shrinking */
    }
	.bjpb-bg {
    background: transparent !important;
}
}
