
        /* --- General Styling --- */
   
        .custom-production-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .biolife-logo img { aspect-ratio: 135/34; }
        .custom-production-heading {
            color: #1a1a1a;
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 0.5em;
        }
        
        /* --- Yelp Description Section --- */
        .custom-production-intro-section {
            background-color: #ffffff;
            border: 1px solid #ddd;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .custom-production-intro-section p {
            font-size: 1.1em;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- Services Grid --- */
        .custom-production-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        /* --- Service Card Styling (Clickable Tile) --- */
        .custom-production-service-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: block;
        }
        .custom-production-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .custom-production-card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        .custom-production-card-content {
            padding: 20px;
        }
        .custom-production-card-content h3 {
            margin-top: 0;
            font-size: 1.5em;
            text-align: left;
        }
        .custom-production-card-content p {
            font-size: 0.95em;
            color: #555;
            text-align: left;
        }

        /* --- Special Callout for Screen Printing --- */
        .custom-production-screen-printing-callout {
            border: 3px solid #007bff; /* Highlight color */
        }
        .custom-production-screen-printing-callout .custom-production-card-content h3::after {
            content: " → Order Now";
            color: #007bff;
            font-size: 0.8em;
            font-weight: normal;
        }

        /* --- Footer/Note Section --- */
        .custom-production-note {
            margin-top: 40px;
            text-align: center;
            font-size: 0.9em;
            color: #777;
        }
        /* General Product Grid Structure */
.tab-content {
    /* Padding around the entire product section */
    padding: 30px 0;
}

.tab-contain {
    /* The HTML indicates 'deflec' and 'justify-content-center' which suggests a Flexbox setup */
    display: flex;
    justify-content-content: center; /* Center the content inside the tab */
    align-items: flex-start;
}

/* Products List (The Carousel) */
.products-list {
    list-style: none; /* Remove default list bullets */
    padding: 0;
    margin: 0 -5px; /* Adjust for slidesMargin: 10 in data-slick (5px margin on left/right of each product item) */
    width: 100%; /* Ensure it takes full width for the carousel */
}

/* Individual Product Item */
.product-item {
    /* Based on data-slick slidesToShow: 4, a starting width is often set, but Slick handles the final width */
    /* Add padding to account for the slidesMargin: 10 from the data-slick attribute (10/2 = 5px) */
    padding: 0 5px;
}

/* Product Container - The Main Card/Box */
.contain-product {
    position: relative;
    border: 1px solid #eee;
    padding: 20px;
    background-color: #fff;
    text-align: center; /* Center text content */
    overflow: hidden; /* Important to contain the slide-down box */
    height: 100%; /* Important for eq-height-contain class to work */
    display: flex;
    flex-direction: column;
}

/* Product Thumbnail Area */
.product-thumb {
    position: relative;
    margin-bottom: 15px;
}

.product-thumb a.link-to-product {
    display: block;
}

.product-thumnail {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.contain-product:hover .product-thumnail {
    transform: scale(1.05);
}

/* Quick View Button */
.btn_call_quickview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    background-color: rgba(28, 79, 195, 0.8); /* Using the blue from your cart button */
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.product-thumb:hover .btn_call_quickview {
    opacity: 1;
    visibility: visible;
}

/* Product Info Area */
.info {
    padding-top: 10px;
}

.categories {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    font-weight: normal;
}

.product-title a.pr-name {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

.product-title a.pr-name:hover {
    color: #1C4FC3;
}

/* Price block (currently commented out in HTML, but styled for future use) */
.price {
    min-height: 20px; /* Space for price even if empty */
    margin-bottom: 15px;
}

.price ins {
    text-decoration: none;
    font-weight: bold;
    color: #1C4FC3;
    font-size: 18px;
    margin-right: 5px;
}

.price del {
    color: #ccc;
    font-size: 14px;
}

/* Slide Down Box (Actions/Message) */
.slide-down-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    transform: translateY(100%); /* Start hidden below the product box */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid #eee;
}

.contain-product:hover .slide-down-box {
    transform: translateY(0);
    opacity: 1;
}

.slide-down-box .message {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Action Buttons Container */
.buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Individual Action Button */
.buttons .btn {
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist and Compare Buttons */
.wishlist-btn,
.compare-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #333;
    border: 1px solid #ccc;
    padding: 0;
}

.wishlist-btn:hover,
.compare-btn:hover {
    border-color: #1C4FC3;
    color: #1C4FC3;
}

/* Add to Cart Button */
.add-to-cart-btn {
    flex-grow: 1; /* Take up remaining space */
    color: #fff;
    background-color: #1C4FC3; /* Explicit style from HTML */
    border-color: #1C4FC3;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.add-to-cart-btn i {
    margin-right: 5px;
}

.add-to-cart-btn:hover {
    background-color: #143a96; /* Darker shade on hover */
    border-color: #143a96;
}

/* Active Tab Content */
#tab01_1st.active {
    display: flex; /* Overwrite default behavior for the active tab content */
}

/* For non-active tabs, they should generally be hidden */
.tab-contain {
    display: none;
}

.tab-contain.active {
    display: flex; /* Or 'block'/'grid' depending on your main layout for the tab content */
}

/* Responsive adjustments for the product container, assuming a mobile-first approach for product details */
@media (max-width: 767px) {
    /* On mobile, stack content or reduce margins if necessary */
    .products-list {
        margin: 0; /* Remove negative margin if the grid breaks */
    }
    .product-item {
        padding: 0 10px; /* Add some side padding */
        margin-bottom: 20px;
    }
    .contain-product {
        padding: 10px;
    }
    /* Keep the slide-down box visible or modify its behavior for small screens */
    .slide-down-box {
        position: relative; /* Keep it in the flow on small screens */
        transform: translateY(0);
        opacity: 1;
        border-top: none;
        padding-top: 10px;
    }
    .product-thumb:hover .btn_call_quickview {
        opacity: 0; /* Hide quick view on touch devices if it interferes */
    }
}
   