/* SECTION WRAPPER */
.health-listing-x82kd {
    padding: 60px 0;
    background-color: #f4f7f6;
    color: var(--textColor_45231);
    overflow-x: hidden;
}

.main-container-p92sd {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

/* HEADER & TABS */
.section-title-h12ws {
    color: var(--thirdColor_45231);
    /* Using root variable */
    font-weight: 800;
    font-size: 1.85rem;
    margin-bottom: 5px;
}

.results-count-c32kd {
    color: #777;
    font-size: 0.95rem;
}

.filter-tabs-p92sd {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tab-btn-t82js {
    border: none;
    background: #f8f9fa;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--textColor_45231);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn-t82js.active-m23sd {
    background-color: var(--thirdColor_45231);
    /* Using root variable */
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(141, 36, 36, 0.25);
}

/* SEARCH AREA */
.search-wrapper-s92kd {
    background-color: var(--secondColor_45231);
    /* Using root variable */
    padding: 25px;
    border-radius: 20px;
    margin: 35px 0;
}

.search-input-group-i22ws {
    position: relative;
    max-width: 100%;
}

.search-input-j82as {
    border: 2px solid transparent;
    padding: 16px 25px 16px 55px;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input-j82as:focus {
    outline: none;
    border-color: var(--mainColor_45231);
    /* Focus glow using main color */
    box-shadow: 0 0 15px rgba(225, 4, 4, 0.1);
}

.search-icon-u22kd {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thirdColor_45231);
    font-size: 1.2rem;
}

/* PACKAGE CARDS */
.testMenuCart_43435e{
    overflow-x: hidden;
}

.package-card-j82as {
    background-color: #fafffe;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 18px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.package-card-j82as:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--secondColor_45231);
}

.package-title-k22ws {
    color: var(--thirdColor_45231);
    /* Using root variable */
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subtitle-s82kd {
    color: var(--textColor_45231);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 18px;
    opacity: 0.8;
}

.params-info-p12kd {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 30px;
}

.params-icon-v92sd {
    color: var(--mainColor_45231);
    /* Medical icon in main color */
    font-size: 1.1rem;
}

/* PRICE AREA */
.price-section-z12ws {
    margin-bottom: 22px;
}

.old-price-p92kd {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-right: 10px;
}

.new-price-n82ws {
    color: var(--teal_45231);
    /* Using root variable (Black as per your def) */
    font-weight: 800;
    font-size: 1.4rem;
}

/* BUTTONS */
.btn-group-g82kd {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-details-d22ws {
    background: #fff;
    border: 1.5px solid var(--thirdColor_45231);
    color: var(--thirdColor_45231);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    /* flex-grow: 1; */
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-details-d22ws:hover {
    background: var(--thirdColor_45231);
    color: #fff;
}

.btn-cart-c82ws {
    background: var(--mainColor_45231);
    border: none;
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    /* flex-grow: 2; */
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-cart-c82ws:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.trash-btn-r92kd {
    color: var(--mainColor_45231);
    background: #fff0f0;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trash-btn-r92kd:hover {
    background: var(--mainColor_45231);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .filter-tabs-p92sd {
        justify-content: flex-start;
        margin-top: 20px;
    }
}