     /* DIET ALOE */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
    
    /* === GLOBAL SCOPE === */
    .aloevera-card-wrapper {
        font-family: 'Inter', sans-serif;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Responsive padding for tablet/desktop */
    @media (min-width: 768px) {
        .aloevera-card-wrapper {
            padding: 2rem 1rem;
        }
    }
    
    /* === PRODUCT WRAPPER === */
    .aloevera-product-card {
        background-color: #ffffff;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        border-radius: 1rem;
        overflow: hidden;
        /* Ensures the card doesn't get too wide on massive screens */
        max-width: 1400px; 
        width: 100%;
    }
    
    /* Inner Grid Container: Sets up the responsive 3-column layout */
    .aloevera-card-wrapper .aloevera-grid-container {
        display: grid;
        grid-template-columns: 1fr; /* Mobile (small screens) - STACKS VERTICALLY */
        gap: 2rem;
        padding: 1.5rem;
    }

    /* Tablet (768px) and up: 3 columns horizontally */
    @media (min-width: 768px) {
        .aloevera-card-wrapper .aloevera-grid-container {
            padding: 2.5rem;
            grid-template-columns: repeat(3, 1fr); 
        }
    }

    /* Large Desktop (1280px) and up: Increase spacing and typography */
    @media (min-width: 1280px) {
        .aloevera-card-wrapper .aloevera-grid-container {
            padding: 3rem; 
            gap: 3rem; 
        }
        .aloevera-card-wrapper .aloevera-description-panel h3 {
            font-size: 2.5rem; 
        }
    }
    
    /* === ITEM 1: DESCRIPTION STYLES - ALOE VERA (GREEN) THEME === */
    .aloevera-card-wrapper .aloevera-description-panel {
        background-color: #059669; /* Primary Green */
        color: #ffffff;
        border-radius: 0.75rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    .aloevera-card-wrapper .aloevera-description-panel h4 {
        font-size: 1rem;
        font-weight: 500;
        color: #a7f3d0; /* Light green hint */
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
    }
    .aloevera-card-wrapper .aloevera-description-panel h3 {
        font-size: 2.25rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 1.25rem;
        letter-spacing: -0.025em;
    }
    .aloevera-card-wrapper .aloevera-description-panel p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.625;
        opacity: 0.95;
        color: #f0fdf4; /* Off-white text */
    }
    
    /* Key Benefits List Styling (Scoped) */
    .aloevera-card-wrapper .key-benefits-group {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid #34d399; /* Soft green divider */
    }
    .aloevera-card-wrapper .key-benefits-group p {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: #ffffff;
    }
    .aloevera-card-wrapper .key-benefits-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .aloevera-card-wrapper .key-benefits-list li {
        display: flex;
        align-items: flex-start;
        font-size: 1rem;
        font-weight: 600;
        color: #f0fdf4;
        transition: color 0.15s ease-in-out;
    }
    .aloevera-card-wrapper .key-benefits-list li:hover {
        color: #facc15; /* Hover to yellow/gold */
    }
    .aloevera-card-wrapper .bullet-icon-wrapper {
        flex-shrink: 0;
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.75rem;
        background-color: #facc15; /* Yellow background for contrast */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    }
    .aloevera-card-wrapper .bullet-icon {
        width: 1rem;
        height: 1rem;
        color: #065f46; /* Dark green icon color */
    }

    /* === ITEM 2: IMAGE STYLES - CONTAINS IMAGE SIZING === */
    .aloevera-card-wrapper .aloevera-image-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        /* Critical: Fixed height constraint to prevent section overgrowth */
        max-height: 35rem; 
    }
    .aloevera-card-wrapper .image-container_inner1 {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    .aloevera-card-wrapper .img1 {
        width: 75%;
        max-height: 100%; 
        height: auto; 
        /* Critical: Ensures image fits within its container without distortion */
        object-fit: contain; 
        transition: transform 0.5s ease;
    }
    .aloevera-card-wrapper .img1:hover {
        transform: scale(1.05);
    }

    /* === ITEM 3: VIDEO & BUTTON STYLES === */
    .aloevera-card-wrapper .aloevera-video-action-panel {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Video Responsive Styling (Scoped) */
    .aloevera-card-wrapper .video-responsive {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        border-radius: 0.75rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border: 1px solid #e5e7eb;
    }
    
    .aloevera-card-wrapper .video-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Order Button Styling - GREEN THEME (Scoped) */
    .aloevera-card-wrapper .product-btn-wrapper a {
        display: block;
        width: 100%;
        text-decoration: none;
    }
    .aloevera-card-wrapper .product-action-btn { 
        width: 100%;
        background-color: #059669; /* Primary Green */
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 700;
        padding: 0.75rem 0;
        border-radius: 0.75rem;
        /* Shadow using the primary green color */
        box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.5), 0 4px 6px -2px rgba(5, 150, 105, 0.25);
        transition: all 0.3s ease-in-out;
        border: none;
        cursor: pointer;
    }
    .aloevera-card-wrapper .product-action-btn:hover { 
        background-color: #047857; /* Darker Green on hover */
        transform: translateY(-0.125rem);
        /* Shadow using the darker green color */
        box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.7), 0 4px 6px -2px rgba(4, 120, 87, 0.3);
        
        
    }
    
    
    
    
    
    /* Custom font import for a modern feel */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
        
        /* === GLOBAL SCOPE === */
        /* All styles are now scoped to the unique wrapper: .aloe-card-wrapper */
        
        .aloe-card-wrapper {
            font-family: 'Inter', sans-serif;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1400px; 
            width: 100%;
            margin: 0 auto; /* Center the entire card wrapper */
        }

        /* Responsive padding for tablet/desktop */
        @media (min-width: 768px) {
            .aloe-card-wrapper {
                padding: 2rem 1rem;
            }
        }
        
        /* === PRODUCT WRAPPER === */
        .aloe-card-wrapper .aloe-product-card {
            background-color: #ffffff;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-radius: 1rem;
            overflow: hidden;
            width: 100%;
        }
        
        /* Inner Grid Container: Sets up the responsive 3-column layout (stacks on mobile) */
        .aloe-card-wrapper .aloe-grid-container {
            display: grid;
            grid-template-columns: 1fr; /* Mobile (small screens) */
            gap: 2rem;
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .aloe-card-wrapper .aloe-grid-container {
                padding: 2.5rem;
                grid-template-columns: repeat(3, 1fr); /* Tablet/Desktop */
            }
        }
        
        /* === ITEM 1: DESCRIPTION STYLES - ALOE GREEN TEA THEME (Teal/Mint) === */
        .aloe-card-wrapper .aloe-description-panel {
            background-color: #059669; /* Medium Teal Green */
            color: #ffffff;
            border-radius: 0.75rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .aloe-card-wrapper .aloe-description-panel h4 {
            font-size: 1rem;
            font-weight: 500;
            color: #a7f3d0; /* Very Light Mint hint */
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }
        .aloe-card-wrapper .aloe-description-panel h3 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #f0fdf4;
            margin-bottom: 1.25rem;
            letter-spacing: -0.025em;
        }
        .aloe-card-wrapper .aloe-description-panel p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            line-height: 1.625;
            opacity: 0.95;
            color: #f0fdf4;
        }
        
        /* Key Benefits List Styling (Scoped) */
        .aloe-card-wrapper .key-benefits-group {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid #a7f3d0; /* Light Mint divider */
        }
        .aloe-card-wrapper .key-benefits-group p {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #f0fdf4;
        }
        .aloe-card-wrapper .key-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .aloe-card-wrapper .key-benefits-list li {
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            font-weight: 600;
            color: #f0fdf4;
            transition: color 0.15s ease-in-out;
        }
        .aloe-card-wrapper .key-benefits-list li:hover {
            color: #99f6e4; /* Hover to Mint accent */
        }
        .aloe-card-wrapper .bullet-icon-wrapper {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            background-color: #99f6e4; /* Mint accent for contrast */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }
        .aloe-card-wrapper .bullet-icon {
            width: 1rem;
            height: 1rem;
            color: #065f46; /* Dark Green icon color */
        }

        /* === ITEM 2: IMAGE STYLES - FIXED HEIGHT CONSTRAINT === */
        .aloe-card-wrapper .aloe-image-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            /* Ensures the panel fills the height provided by the grid row, and is capped */
            height: 100%; 
            max-height: 35rem; 
        }
        .aloe-card-wrapper .image-container_inner1 {
            display: flex;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .aloe-card-wrapper .img1 {
            width: 75%;
            /* CRUCIAL: Ensures image respects its container's height and doesn't dictate it */
            max-height: 100%; 
            height: auto; 
            object-fit: contain; /* Ensures the whole image is visible without cropping */
            transition: transform 0.5s ease;
        }
        .aloe-card-wrapper .img1:hover {
            transform: scale(1.05);
        }

        /* === ITEM 3: VIDEO & BUTTON STYLES === */
        .aloe-card-wrapper .aloe-video-action-panel {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        /* Video Responsive Styling (Scoped) */
        .aloe-card-wrapper .video-responsive {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e7eb;
        }
        
        .aloe-card-wrapper .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Order Button Styling - MINT GREEN THEME (Scoped) */
        .aloe-card-wrapper .aloe-product-btn-wrapper a {
            display: block;
            width: 100%;
            text-decoration: none;
        }
        .aloe-card-wrapper .aloe-product-action-btn { 
            width: 100%;
            background-color: #34d399; /* Mint Green */
            color: #065f46; /* Dark Green text for contrast */
            font-size: 1.25rem;
            font-weight: 700;
            padding: 0.75rem 0;
            border-radius: 0.75rem;
            /* Shadow using the primary color */
            box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.5), 0 4px 6px -2px rgba(52, 211, 153, 0.25);
            transition: all 0.3s ease-in-out;
            border: none;
            cursor: pointer;
        }
        .aloe-card-wrapper .aloe-product-action-btn:hover { 
            background-color: #065f46; /* Darker Green on hover */
            color: #ffffff; /* White text on hover */
            transform: translateY(-0.125rem);
            /* Shadow using the darker color */
            box-shadow: 0 10px 15px -3px rgba(6, 95, 70, 0.7), 0 4px 6px -2px rgba(6, 95, 70, 0.3);
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     /* Custom font import for a modern feel */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
        
        /* === GLOBAL SCOPE === */
        /* All styles are now scoped to the unique wrapper: .vit-card-wrapper */
        
        .vit-card-wrapper {
            font-family: 'Inter', sans-serif;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1400px; 
            width: 100%;
            margin: 0 auto; /* Center the entire card wrapper */
        }

        /* Responsive padding for tablet/desktop */
        @media (min-width: 768px) {
            .vit-card-wrapper {
                padding: 2rem 1rem;
            }
        }
        
        /* === PRODUCT WRAPPER === */
        .vit-card-wrapper .vit-product-card {
            background-color: #ffffff;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-radius: 1rem;
            overflow: hidden;
            width: 100%;
        }
        
        /* Inner Grid Container: Sets up the responsive 3-column layout (stacks on mobile) */
        .vit-card-wrapper .vit-grid-container {
            display: grid;
            grid-template-columns: 1fr; /* Mobile (small screens) */
            gap: 2rem;
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .vit-card-wrapper .vit-grid-container {
                padding: 2.5rem;
                grid-template-columns: repeat(3, 1fr); /* Tablet/Desktop */
            }
        }
        
        /* === ITEM 1: DESCRIPTION STYLES - RED/GREEN THEME === */
        .vit-card-wrapper .vit-description-panel {
            background-color: #7c0505; /* Deep Red */
            color: #ffffff;
            border-radius: 0.75rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .vit-card-wrapper .vit-description-panel h4 {
            font-size: 1rem;
            font-weight: 500;
            color: #fca5a5; /* Light Red hint */
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }
        .vit-card-wrapper .vit-description-panel h3 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #f0fdf4;
            margin-bottom: 1.25rem;
            letter-spacing: -0.025em;
        }
        .vit-card-wrapper .vit-description-panel p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            line-height: 1.625;
            opacity: 0.95;
            color: #f0fdf4;
        }
        
        /* Key Benefits List Styling (Scoped) */
        .vit-card-wrapper .key-benefits-group {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid #6ee7b7; /* Soft green divider */
        }
        .vit-card-wrapper .key-benefits-group p {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #f0fdf4;
        }
        .vit-card-wrapper .key-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .vit-card-wrapper .key-benefits-list li {
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            font-weight: 600;
            color: #f0fdf4;
            transition: color 0.15s ease-in-out;
        }
        .vit-card-wrapper .key-benefits-list li:hover {
            color: #fde047; /* Hover to yellow */
        }
        .vit-card-wrapper .bullet-icon-wrapper {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            background-color: #6ee7b7; /* Green background for contrast */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }
        .vit-card-wrapper .bullet-icon {
            width: 1rem;
            height: 1rem;
            color: #064e3b; /* Dark green icon color */
        }

        /* === ITEM 2: IMAGE STYLES - FIXED HEIGHT CONSTRAINT === */
        .vit-card-wrapper .vit-image-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            max-height: 35rem; /* CRUCIAL: Prevents the section from oversizing */
        }
        .vit-card-wrapper .image-container_inner1 {
            display: flex;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .vit-card-wrapper .img1 {
            width: 75%;
            max-height: 100%; /* Ensures image fits within the panel's max-height */
            height: auto; 
            object-fit: contain; /* Ensures the whole image is visible without cropping */
            transition: transform 0.5s ease;
        }
        .vit-card-wrapper .img1:hover {
            transform: scale(1.05);
        }

        /* === ITEM 3: VIDEO & BUTTON STYLES === */
        .vit-card-wrapper .vit-video-action-panel {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        /* Video Responsive Styling (Scoped) */
        .vit-card-wrapper .video-responsive {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e7eb;
        }
        
        .vit-card-wrapper .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Order Button Styling - YELLOW/RED THEME (Scoped) */
        .vit-card-wrapper .vit-product-btn-wrapper a {
            display: block;
            width: 100%;
            text-decoration: none;
        }
        .vit-card-wrapper .vit-product-action-btn { 
            width: 100%;
            background-color: #eae60c; /* Yellow */
            color: #1f2937; /* Dark text for contrast */
            font-size: 1.25rem;
            font-weight: 700;
            padding: 0.75rem 0;
            border-radius: 0.75rem;
            /* Shadow using the primary color */
            box-shadow: 0 10px 15px -3px rgba(234, 230, 12, 0.5), 0 4px 6px -2px rgba(234, 230, 12, 0.25);
            transition: all 0.3s ease-in-out;
            border: none;
            cursor: pointer;
        }
        .vit-card-wrapper .vit-product-action-btn:hover { 
            background-color: #f97316; /* Darker Orange on hover */
            color: #ffffff; /* White text on hover */
            transform: translateY(-0.125rem);
            /* Shadow using the darker orange color */
            box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.7), 0 4px 6px -2px rgba(234, 88, 12, 0.3);
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    