.info-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-column li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.info-column li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

/* Mega Menu Wrapper */
.mega-menu {
    position: static !important;
}

.mega-menu .mega-menu-content {
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-top: 2px solid #0066cc;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    top: 98%;
    z-index: 1000;
}

/* Show on hover */
.mega-menu:hover .mega-menu-content {
    display: block;
}

/* Left side main category */
.mega-menu .mega-left {
    border-right: 1px solid #eee;
    background: #f9f9f9;
    padding: 10px 0;
    min-height: 300px;
}

.mega-menu .mega-left ul li {
    padding: 8px 15px;
    cursor: pointer;

}

.mega-menu .mega-left ul li:hover,
.mega-menu .mega-left ul li.active {
    background: #e6f0ff;
}

.mega-menu .mega-left ul li a {
    color: #333;
    display: block;
    text-decoration: none;
}

/* Right side */
.mega-menu .mega-right {
    padding: 15px 25px;
    min-height: 300px;
}

.mega-menu .mega-right h5 a {
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

.mega-menu .mega-right ul li a {
    color: #555;
    font-size: 13px;
    text-decoration: none;
}

.mega-menu .mega-right ul li a:hover {
    color: #0066cc;
}

@media (max-width: 991px) {
    .mega-menu .mega-menu-content {
        position: static;
        box-shadow: none;
        padding: 10px;
    }
}

.lab-item {
    display: block;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.lab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lab-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.lab-item:hover img {
    transform: scale(1.05);
}

.lab-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 12px;
    margin: 0;
    background-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .lab-image {
        height: 130px;
    }
}

.category-buttons-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 40px auto;
}
.category-buttons-list a, .category-buttons-list button {
    width: 130px;
    background: #1e83ec;
    border-radius: 20px;
    padding: 14px;
    color: #fff;
    text-align: center;
    margin-right: 16px;
    justify-content: center;
    text-decoration: none;
    border: none;
    min-width: initial;
    text-transform: capitalize;
}
.category-buttons-list a svg, .category-buttons-list button svg {
    height: 45px;
}

  .product-card {
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 25px;
        transition: 0.3s ease;
    }

    .product-card:hover {
        border-color: #e8262e; /* logo red */
        transform: scale(1.03);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }
