/* Paket set tam düzeltme */
.jl-bundle-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px !important;
}
.jl-bundle-card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
  min-height:100% !important;
  background:#fff;
  border:1px solid #e8ebf0;
  border-radius:18px;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.jl-bundle-card:hover{
  transform:translateY(-3px);
  border-color:#d7dee8;
  box-shadow:0 18px 32px rgba(15,23,42,.10);
}
.jl-bundle-image{
  display:block;
  background:linear-gradient(180deg,#fbfcfe,#f5f7fb);
}
.jl-bundle-image img{
  width:100% !important;
  height:240px !important;
  min-height:240px !important;
  max-height:240px !important;
  object-fit:cover !important;
  display:block;
}
.jl-bundle-body{
  display:flex !important;
  flex-direction:column !important;
  flex:1 1 auto !important;
  padding:14px;
}
.jl-bundle-body h3{
  margin:0 0 8px;
  min-height:44px !important;
  max-height:44px !important;
  overflow:hidden !important;
  font-size:16px;
  line-height:1.35;
}
.jl-bundle-body h3 a{
  color:#111827;
  text-decoration:none;
}
.jl-bundle-desc{
  min-height:38px !important;
  max-height:38px !important;
  overflow:hidden !important;
  color:#6b7280;
  font-size:12px;
  line-height:1.6;
}
.jl-bundle-price{
  margin-top:auto !important;
  font-size:23px;
  font-weight:900;
  color:#111827;
  line-height:1.1;
}
.jl-bundle-actions{
  display:flex;
  gap:8px;
  margin-top:14px;
}
.jl-bundle-actions .jl-btn,
.jl-bundle-actions .jl-btn-secondary{
  flex:1;
}
@media (max-width:980px){
  .jl-bundle-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:640px){
  .jl-bundle-grid{
    grid-template-columns:1fr !important;
  }
  .jl-bundle-image img{
    height:210px !important;
    min-height:210px !important;
    max-height:210px !important;
  }
}
