 /* 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: .orange-card-wrapper */
        
        /* Wrapper Styling (for centering/padding relative to the card, not the entire page) */
        .orange-card-wrapper {
            font-family: 'Inter', sans-serif;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Optional: Add background color here if you want the card to stand out in a specific background */
        }

        /* Responsive padding for tablet/desktop */
        @media (min-width: 768px) {
            .orange-card-wrapper {
                padding: 2rem 1rem;
            }
        }
        
        /* === PRODUCT WRAPPER === */
        .orange-product-card {
            background-color: #ffffff;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-radius: 1rem;
            overflow: hidden;
            /* Increased max-width for a larger desktop size */
            max-width: 1400px; 
            width: 100%;
        }
        
        /* Inner Grid Container: Sets up the responsive 3-column layout */
        .orange-card-wrapper .orange-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) {
            .orange-card-wrapper .orange-grid-container {
                padding: 2.5rem;
                grid-template-columns: repeat(3, 1fr); 
            }
        }

        /* Large Desktop (1280px) and up: Increase spacing and typography */
        @media (min-width: 1280px) {
            .orange-card-wrapper .orange-grid-container {
                padding: 3rem; /* Larger internal padding */
                gap: 3rem; /* Larger gap between elements */
            }
            .orange-card-wrapper .orange-description-panel h3 {
                font-size: 2.5rem; /* Slightly larger main title */
            }
        }
        
        /* === ITEM 1: DESCRIPTION STYLES - ORANGE THEME === */
        .orange-card-wrapper .orange-description-panel {
            background-color: #f97316; /* Primary Orange */
            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);
        }
        .orange-card-wrapper .orange-description-panel h4 {
            font-size: 1rem;
            font-weight: 500;
            color: #fed7aa; /* Light orange hint */
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }
        .orange-card-wrapper .orange-description-panel h3 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.25rem;
            letter-spacing: -0.025em;
        }
        .orange-card-wrapper .orange-description-panel p {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            line-height: 1.625;
            opacity: 0.95;
            color: #fff7ed; /* Off-white text */
        }
        
        /* Key Benefits List Styling (Scoped) */
        .orange-card-wrapper .key-benefits-group {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid #fb923c; /* Soft orange divider */
        }
        .orange-card-wrapper .key-benefits-group p {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }
        .orange-card-wrapper .key-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .orange-card-wrapper .key-benefits-list li {
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            font-weight: 600;
            color: #fff7ed;
            transition: color 0.15s ease-in-out;
        }
        .orange-card-wrapper .key-benefits-list li:hover {
            color: #fde047; /* Hover to yellow/gold */
        }
        .orange-card-wrapper .bullet-icon-wrapper {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            background-color: #fde047; /* 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);
        }
        .orange-card-wrapper .bullet-icon {
            width: 1rem;
            height: 1rem;
            color: #92400e; /* Dark brown/orange icon color */
        }

        /* === ITEM 2: IMAGE STYLES === */
        .orange-card-wrapper .orange-image-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            max-height: 35rem; /* FIXED HEIGHT CONSTRAINT */
        }
        .orange-card-wrapper .image-container_inner1 {
            display: flex;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .orange-card-wrapper .img1 {
            width: 75%;
            max-height: 100%; 
            height: auto; 
            object-fit: contain; 
            transition: transform 0.5s ease;
        }
        .orange-card-wrapper .img1:hover {
            transform: scale(1.05);
        }

        /* === ITEM 3: VIDEO & BUTTON STYLES === */
        .orange-card-wrapper .orange-video-action-panel {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        /* Video Responsive Styling (Scoped) */
        .orange-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;
        }
        
        .orange-card-wrapper .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Order Button Styling - ORANGE THEME (Scoped) */
        .orange-card-wrapper .product-btn-wrapper a {
            display: block;
            width: 100%;
            text-decoration: none;
        }
        .orange-card-wrapper .product-action-btn { 
            width: 100%;
            background-color: #f97316; /* Primary Orange */
            color: #ffffff;
            font-size: 1.25rem;
            font-weight: 700;
            padding: 0.75rem 0;
            border-radius: 0.75rem;
            /* Shadow using the primary orange color */
            box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.5), 0 4px 6px -2px rgba(249, 115, 22, 0.25);
            transition: all 0.3s ease-in-out;
            border: none;
            cursor: pointer;
        }
        .orange-card-wrapper .product-action-btn:hover { 
            background-color: #ea580c; /* Darker Orange 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);
        }