/* =====================================
SINGLE CARD PAGE
===================================== */

.ip-single-card{
max-width:1200px;
margin:30px auto;
}

/* =====================================
HEADER
===================================== */

.ip-card-header{
display:grid;
grid-template-columns:320px 1fr;
gap:30px;
align-items:center;
background:#fff;
border:1px solid #e5e7eb;
border-radius:20px;
padding:25px;
box-shadow:0 4px 15px rgba(0,0,0,.05);
margin-bottom:25px;
}

.ip-card-image{
text-align:center;
}

.ip-card-image img{
max-width:100%;
height:auto;
}

.ip-card-info h1{
margin:0 0 12px;
font-size:32px;
font-weight:700;
color:#111827;
}

.ip-card-info p{
margin:8px 0;
color:#6b7280;
}

.ip-rating{
display:inline-flex;
align-items:center;
padding:8px 14px;
background:#fff7ed;
border:1px solid #fed7aa;
border-radius:999px;
font-weight:700;
margin:10px 0;
}

.ip-bank-note{
margin:15px 0;
padding:12px;
background:#f0fdf4;
border:1px solid #bbf7d0;
border-radius:10px;
color:#15803d;
font-weight:600;
}

.ip-apply-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:50px;
padding:0 24px;
background:#0046ff;
color:#fff;
text-decoration:none;
border-radius:12px;
font-weight:700;
}

/* =====================================
SECTIONS
===================================== */

.ip-card-section{
background:#fff;
border:1px solid #e5e7eb;
border-radius:18px;
padding:24px;
margin-bottom:20px;
box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.ip-card-section h2{
margin:0 0 18px;
font-size:22px;
font-weight:700;
color:#111827;
}

/* =====================================
FEES GRID
===================================== */

.ip-fees-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.ip-fee-box{
padding:18px;
border:1px solid #e5e7eb;
border-radius:14px;
background:#f8fafc;
}

.ip-fee-box strong{
display:block;
margin-bottom:8px;
}

.ip-fee-box p{
margin:0;
font-weight:600;
}

/* =====================================
DETAILS GRID
===================================== */

.ip-details-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.ip-detail-box{
padding:18px;
border:1px solid #e5e7eb;
border-radius:14px;
background:#f8fafc;
}

.ip-detail-box strong{
display:block;
margin-bottom:8px;
}

.ip-detail-box p{
margin:0;
font-weight:600;
}

/* =====================================
BENEFITS
===================================== */

.ip-benefits-list{
margin:0;
padding-left:20px;
}

.ip-benefits-list li{
margin-bottom:12px;
line-height:1.7;
}

/* =====================================
DESCRIPTION
===================================== */

.ip-card-description{
line-height:1.8;
color:#374151;
}

/* =====================================
REVIEWS
===================================== */

.ip-review-section{
background:#fff;
border:1px solid #e5e7eb;
border-radius:18px;
padding:24px;
margin-bottom:20px;
}

.ip-review-section h2{
margin-top:0;
}

/* =====================================
RELATED CARDS
===================================== */

.ip-related-slider{
display:flex;
gap:16px;
overflow-x:auto;
padding-bottom:10px;
scrollbar-width:none;
}

.ip-related-slider::-webkit-scrollbar{
display:none;
}

.ip-related-card{
min-width:240px;
background:#fff;
border:1px solid #e5e7eb;
border-radius:16px;
padding:16px;
text-align:center;
}

.ip-related-card img{
width:100%;
height:auto;
margin-bottom:12px;
}

.ip-related-card h4{
font-size:16px;
margin:10px 0;
}

.ip-related-card a{
display:inline-block;
margin-top:10px;
padding:10px 16px;
background:#0046ff;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;
}

/* ==========================
STICKY CTA
========================== */

.ip-sticky-cta{
position:fixed;
left:0;
right:0;
bottom:0;
z-index:9999;

display:flex;
align-items:center;
justify-content:space-between;
gap:12px;

padding:12px 15px;

background:#fff;
border-top:1px solid #e5e7eb;
box-shadow:0 -5px 20px rgba(0,0,0,.08);

opacity:0;
visibility:hidden;
transform:translateY(100%);
transition:.3s;
}

.ip-sticky-cta.show{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* LEFT */

.ip-sticky-left{
display:flex;
align-items:center;
gap:10px;
flex:1;
min-width:0;
}

.ip-sticky-left img{
width:52px;
height:auto;
display:block;
border-radius:8px;
flex-shrink:0;
}

.ip-sticky-title{
font-size:14px;
font-weight:700;
line-height:1.3;
color:#111827;

overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}

.ip-sticky-subtitle{
font-size:12px;
color:#6b7280;

overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}

/* BUTTON */

.ip-sticky-btn{
height:46px;
padding:0 20px;

display:flex;
align-items:center;
justify-content:center;

background:#0046ff;
color:#fff;
text-decoration:none;
font-weight:700;

border-radius:10px;
flex-shrink:0;
}

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

@media(max-width:1024px){

.ip-card-header{
grid-template-columns:1fr;
text-align:center;
}

.ip-fees-grid,
.ip-details-grid{
grid-template-columns:repeat(2,1fr);
}

}

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

@media(max-width:767px){

.ip-single-card{
margin:15px 0;
}

.ip-card-header{
padding:18px;
}

.ip-card-info h1{
font-size:24px;
}

.ip-fees-grid,
.ip-details-grid{
grid-template-columns:1fr;
}

.ip-related-card{
min-width:220px;
}

.ip-sticky-cta{
padding:10px 12px;
gap:10px;
}

.ip-sticky-left img{
width:44px;
}

.ip-sticky-title{
font-size:13px;
}

.ip-sticky-subtitle{
font-size:10px;
}

.ip-sticky-btn{
height:42px;
padding:0 14px;
font-size:13px;
}

}
