	.main-content {
        display: block;
        margin-top: 100px;
        padding-bottom: 50px
    }
	
	.header-bar {
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: #fff !important; 
      box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
	.header-bar:not(.header-is-sticky) .site-nav > li > .site-nav__link {
      color: #016b60;
      text-shadow: 0 0px 0px rgba(0,0,0,0);
    }
	
	.header-is-sticky .site-nav > li > .site-nav__link {
      color: #016b60 !important; 
      text-shadow: none;
    }

    /* ==========================================================================
       New Product Grid Styles (v4 - Safe Mode)
       - Strictly follows the theme layout to avoid conflicts.
       ========================================================================== */

    /* --- 1. Basic Product Card Style (Layout untouched) --- */
    .main-content .product_grid-item {
        /* Add a modern visual effect to the card */
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden; /* Ensure all content stays within the rounded corners */

        /* Use Flexbox to vertically align internal elements (image area, text area) */
        display: flex;
        flex-direction: column;
    }

    .main-content .product_grid-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    /* --- 2. Hide the "Add to Cart" button at the bottom of the card --- */
    /* Use a very specific selector to target only this button */
    .main-content .product_grid-item > .btn.large--hide.btn--outline {
        display: none !important;
    }

    /* --- 3. Image Area: Size, Aspect Ratio, and Hover Effects --- */

    /* Image container, serves as the "stage" for all hover effects */
    .main-content .grid-link__image--product {
        position: relative;
        display: block;
        overflow: hidden;
        /* Key: Set a taller aspect ratio (3:4 width to height) */
        aspect-ratio: 3 / 4;
    }

    /* Settings for all images within the container */
    .main-content .grid-link__image--product img {
        position: absolute;
        top: 0;
        left: 0;
        /* Key: Force image to fill the container while maintaining its aspect ratio without stretching */
        width: 100%;
        height: 100%;
        object-fit: cover;
        
        /* Smooth transition for image switching */
        transition: opacity 0.4s ease-in-out;
    }

    /* Hide the second image by default (shown on hover) */
    .main-content .product-secondary_image {
        opacity: 0;
    }

    /* On hovering over the image area */
    .main-content .grid-link__image--product:hover .product-featured_image {
        opacity: 0; /* Hide the first image */
    }
    .main-content .grid-link__image--product:hover .product-secondary_image {
        opacity: 1; /* Show the second image */
    }

    /* Black semi-transparent overlay on the image */
    .main-content .grid-link__image--product::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1; /* Ensure the overlay is above the image */
    }

    .main-content .grid-link__image--product:hover::after {
        opacity: 1; /* Show the overlay on hover */
    }

    /* --- 4. Hover Button and "Sale" Badge --- */

    /* Positioning and styling for the "Sale" badge */
    .main-content .badge--sale {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 3; /* Ensure it's on the top layer */
        background-color: #016b60;
        color: white;
        padding: 6px 12px;
        border-radius: 5px;
        font-size: 0.9em;
    }

    /* Key: Unified settings for all hover buttons inside the image */
    .main-content .float-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        /* Initially outside the visual area with a displacement, preparing for animation */
        transform: translate(-50%, 30px);
        opacity: 0;
        z-index: 2; /* Above the overlay, below the badge */
        
        /* Button styles */
        background-color: #fff;
        color: #016b60;
        border-radius: 25px;
        padding: 12px 24px;
        font-weight: 600;
        white-space: nowrap;
        cursor: pointer;
        text-decoration: none; /* Ensure 'a' tag buttons have no underline */
        display: inline-flex;
        align-items: center;

        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Final state of the button on hover over the image area */
    .main-content .grid-link__image--product:hover .float-btn {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .main-content .float-btn:hover {
        background-color: #09BBA9;
        color: #fff;
    }

    /* --- 5. Product Information Text Area Styles --- */
    .main-content .product-meta_link {
        padding: 20px;
        text-decoration: none;
        /* Automatically fill the remaining height of the card */
        flex-grow: 1; 
        /* Use flex internally to align title and price at opposite ends */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .main-content .grid-link__title {
        color: #333;
        font-size: 1em;
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .main-content .grid-link__meta {
        color: #016b60;
        font-size: 1.1em;
        font-weight: 600;
    }

    .main-content .grid-link__sale_price {
        color: #888;
        margin-left: 5px;
    }

    .main-content .grid-link__sale_price-percent {
        background-color: #ff4d4d;
        color: #fff;
        padding: 3px 8px;
        border-radius: 5px;
        font-size: 0.8em;
        margin-left: 8px;
        font-weight: 500;
    }

    /* ==========================================================================
       V5 - Forced Layout Fix
       ========================================================================== */

    /* Force parent container to use Flexbox layout */
    .grid.sticky-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important; /* Prevent wrapping, ensure elements are side-by-side */
        width: 100%;
    }

    /* Force left sidebar to occupy 25% width */
    .grid__item.large--one-quarter {
        width: 25% !important;
        padding-right: 15px; /* Add some spacing on the right */
        box-sizing: border-box;
    }

    /* Force right main content area to occupy 75% width */
    .grid__item.large--three-quarters {
        width: 75% !important;
        padding-left: 15px; /* Add some spacing on the left */
        box-sizing: border-box;
    }

    /* Ensure the inner product grid wraps correctly */
    .product-list-grid.grid-uniform {
        display: flex;
        flex-wrap: wrap;
    }

    /* --- Responsive Adjustments --- */
    /* When screen width is less than 992px, hide sidebar, main content takes full width */
    @media (max-width: 991px) {
        .grid__item.medium-down--hide {
            display: none !important;
        }
        .grid__item.large--three-quarters {
            width: 100% !important;
            padding-left: 0;
        }
    }

    /* ==========================================================================
       Sidebar Modernization
       ========================================================================== */

    /* 1. Sidebar container style */
    .collection-sidebar {
        background-color: #fbfbfb;
        border-radius: 12px;
        padding: 20px 25px;
        border: 1px solid #e9e9e9;
        /* Let the sidebar height adapt to its content, preventing it from being too long */
        height: fit-content; 
    }

    /* 2. "Collections" title style */
    .collection-sidebar .h4 {
        font-size: 1.25em;
        font-weight: 600;
        color: #333;
        margin-top: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        /* Add a soft dividing line below the title */
        border-bottom: 1px solid #ebebeb;
    }

    /* 3. Default style for category links */
    .collection-sidebar .collection-link a {
        display: block;
        padding: 12px 15px;
        color: #555;
        text-decoration: none;
        font-weight: 500;
        border-radius: 8px;
        margin-bottom: 4px;
        /* Add smooth transitions for all effects */
        transition: all 0.25s ease-out;
    }

    /* 4. Effect when hovering over links */
    .collection-sidebar .collection-link a:hover {
        background-color: #f0f0f0;
        color: #016b60;
        /* A subtle rightward movement effect for a dynamic feel */
        transform: translateX(4px);
    }


    /* ==========================================================================
       Final Fix: Create physical spacing below the title using a pseudo-element
       ========================================================================== */
    
    /* 1. Make the title container a positioning reference and remove conflicting margins */
    .collection-sidebar .h4 {
        position: relative; /* Becomes the positioning parent for the pseudo-element */
        padding-bottom: 15px; /* Retain padding below the title */
        margin-bottom: 0; /* Reset margin to avoid any interference */
        border-bottom: 1px solid #ebebeb; /* Keep the dividing line */
    }

    /* 2. Key Fix: Use ::after pseudo-element to create a visible "spacer block" */
    .collection-sidebar .h4::after {
        content: ''; /* Required for pseudo-elements */
        display: block; /* Makes it a block-level element */
        height: 20px; /* This is your desired spacing height, adjustable as needed */
        width: 100%;
    }

    /* ==========================================================================
       Modern Breadcrumb Style
       ========================================================================== */
    .breadcrumb {
      font-size: 0.9em;
      font-weight: 500;
      color: #555;
      background-color: #f7f7f7;
      padding: 12px 20px;
      border-radius: 8px;
      margin-bottom: 25px;
    }

    .breadcrumb a {
      color: #016b60;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumb a:hover {
      color: #09BBA9;
    }

    .breadcrumb__sep {
      margin: 0 10px;
      color: #aaa;
    }

    .breadcrumb span {
      color: #333;
      font-weight: 600;
    }