
    
     /* 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);
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    