.lab-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;

    display:flex;
    flex-direction:column;
}

.lab-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.lab-card-image{
    position:relative;
}

.lab-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.lab-card-image .badge{
    position:absolute;
    top:15px;
    right:15px;
    font-size:13px;
    padding:8px 12px;
}

.lab-card-body{
    padding:25px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.lab-card-body h4{
    font-weight:600;
    min-height:60px;
}

.description{
    color:#666;
    line-height:1.7;
    /* height:80px; */
    overflow:hidden;
    font-size: 12px;
}

.price{
    font-size:15px;
    font-weight:700;
    color:rgba(0, 0, 0, 0.7);
    margin-top:20px;
}

.btn-detail{
    display:block;
    width:100%;
    margin-top:auto; /* สำคัญ */
    text-align:center;
    padding:12px;
    border-radius:12px;
    background:rgba(99, 124, 30, 0.7);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.btn-detail:hover{
    background:rgba(146, 192, 21, 0.7);
    color:#fff;
    text-decoration:none;
}


.lab-title{
    color:rgba(99, 124, 30, 0.7);
    font-weight:700;
}

#lab-tabs .nav-link{
    border-radius:30px;
    margin:0 5px;
    padding:10px 25px;
    font-weight:600;
}

#lab-tabs .nav-link.active{
     color:#fff !important;
    background:rgba(99, 124, 30, 0.7);
}

.lab-header{
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 5px;
}

.lab-subtitle{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #16a34a;
    background: rgba(22,163,74,.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 5px;
}

.lab-title{
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #1e293b;
}

.lab-title::after{
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    margin: 15px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg,#16a34a,#22c55e);
}

.lab-description{
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #64748b;
}