
        /* Namespaced styles for UEEshop compatibility & Mobile-Only Display */
        html, body {
            margin: 0;
            padding: 0;
            background-color: #f7f9fc; /* Apply background to html/body for full coverage */
        }
        .infinity-mattress-content {
            font-family: 'Inter', 'Arial', 'Noto Sans', sans-serif;
            line-height: 1.5; /* Slightly reduced for mobile */
            color: #333;
            background-color: #f7f9fc;
            margin: 0 auto; /* Center the content */
            padding: 0;
            max-width: 480px; /* Force mobile-like width */
            overflow-x: hidden; /* Prevent horizontal scroll */
        }
        
        .infinity-mattress-content * {
            box-sizing: border-box;
        }
        
        .infinity-container {
            width: 100%;
            padding: 0 15px; /* Standard mobile padding */
        }
        
        .infinity-header {
            text-align: center;
            padding: 25px 15px; /* Adjusted padding */
            background: linear-gradient(135deg, #223777 0%, #3a5baf 100%);
            color: white;
            margin: 0; /* Remove top/bottom margin if it's the very top */
            border-radius: 0 0 20px 20px; /* Rounded bottom corners */
            box-shadow: 0 4px 15px rgba(34, 55, 119, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .infinity-header::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .infinity-header-content {
            position: relative;
            z-index: 1;
        }
        
        .infinity-header h1 {
            font-size: clamp(22px, 5vw, 28px); /* Responsive font size */
            margin: 0 0 10px 0;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .infinity-header p.infinity-subtitle {
            font-size: clamp(14px, 3.5vw, 16px);
            margin: 0 0 15px 0;
            opacity: 0.9;
        }

        /* First Screen Advantages (Condensed) */
        .infinity-hero-advantages {
            display: flex;
            justify-content: space-around;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .infinity-hero-advantage-item {
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 10px;
            font-size: 13px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 90px; /* Ensure items don't get too squished */
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .infinity-hero-advantage-item i {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .infinity-section-title {
            text-align: center;
            margin: 35px 0 20px; /* Adjusted margin */
            position: relative;
            color: #223777;
        }
        
        .infinity-section-title h2 {
            font-size: clamp(20px, 4.5vw, 24px);
            position: relative;
            display: inline-block;
            padding: 0 15px;
            background: #f7f9fc;
            z-index: 1;
            font-weight: 600;
        }
        
        .infinity-section-title::after {
            content: '';
            position: absolute;
            left: 10%; /* Shorten the line */
            top: 50%;
            width: 80%; /* Shorten the line */
            height: 1px;
            background: linear-gradient(90deg, transparent, #ccc, transparent);
            z-index: 0;
        }
        
        .infinity-card {
            background: white;
            border-radius: 12px; /* Softer radius */
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
            padding: 20px; /* Adjusted padding for mobile */
            margin-bottom: 20px;
            border: 1px solid #eef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .infinity-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        
        .infinity-advantage-item {
            display: flex;
            margin-bottom: 18px; /* Adjusted margin */
            align-items: flex-start;
        }
        .infinity-advantage-item:last-child {
            margin-bottom: 0;
        }
        
        .infinity-advantage-icon {
            background: linear-gradient(135deg, #223777, #3a5baf);
            width: 35px; height: 35px; /* Slightly smaller */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: white;
            font-weight: bold;
            font-size: 14px; /* Adjusted size */
            box-shadow: 0 2px 8px rgba(34, 55, 119, 0.25);
        }
        
        .infinity-advantage-content h3 {
            font-size: 16px; /* Adjusted size */
            margin: 0 0 5px 0;
            color: #223777;
            font-weight: 600;
        }
        .infinity-advantage-content h3 i { margin-right: 6px;
            opacity: 0.7;}
        
        .infinity-advantage-content p {
            font-size: 14px; /* Adjusted size */
            color: #555; /* Darker gray for better readability */
            margin: 0;
            line-height: 1.4;
        }
        
        .infinity-img-container {
            width: 100%;
            margin: 15px 0;
            text-align: center;
            aspect-ratio: 4/3;
            background-color: #e8f1ff; /* Lighter placeholder background */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #dde; /* Softer border */
        }
        
        .infinity-img-container img {
            max-width: 100%;
            height: 100%;
            object-fit: cover; /* Or 'contain' if you prefer to see the whole image */
        }
        
        .infinity-img-caption {
            font-size: 12px;
            color: #777;
            text-align: center;
            margin-top: 6px;
            font-style: italic;
        }
        
        .infinity-accordion {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
        }
        
        .infinity-accordion-header {
            background: linear-gradient(135deg, #2a438c, #3f60b5); /* Slightly adjusted gradient */
            color: white;
            padding: 15px 20px; /* Adjusted padding */
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            font-weight: 500; /* Medium weight */
        }
         .infinity-accordion-header i.fa-solid { margin-right: 8px;
        }
        
        .infinity-accordion-header:hover {
            background: linear-gradient(135deg, #3552a0, #4d72c8);
        }
        
        .infinity-accordion-header .infinity-accordion-icon {
            font-size: 16px; /* Adjusted size */
            transition: transform 0.3s ease;
        }
        
        .infinity-accordion-header.active .infinity-accordion-icon {
            transform: rotate(45deg);
        }
        
        .infinity-accordion-content {
            display: none;
            padding: 15px 20px;
            background-color: white;
            border-top: 1px solid rgba(34, 55, 119, 0.1);
            font-size: 14px;
            color: #555;
        }
         .infinity-accordion-content.active { display: block;
        }
         .infinity-accordion-content p { margin-bottom: 10px;
        }
         .infinity-accordion-content p:last-child { margin-bottom: 0;
        }
         .infinity-accordion-content strong { color: #223777;
        }

        .infinity-process-step {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .infinity-process-number {
            width: 40px;
            height: 40px; /* Adjusted size */
            background: linear-gradient(135deg, #223777, #3a5baf);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(34, 55, 119, 0.25);
            transition: transform 0.3s ease;
        }
        .infinity-process-step:hover .infinity-process-number { transform: scale(1.05);
        }
        
        .infinity-process-content { flex-grow: 1;
            padding-top: 2px; }
        .infinity-process-content h3 {
            font-size: 17px; /* Adjusted size */
            margin: 0 0 6px 0;
            color: #223777;
            font-weight: 600;
        }
        .infinity-process-content h3 i { margin-right: 6px;
            opacity: 0.7;}
        .infinity-process-content p { font-size: 14px; color: #555; margin: 0; line-height: 1.4;
        }
        
        .infinity-specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            font-size: 13px; /* Smaller font for tables on mobile */
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        }
        .infinity-specs-table th, .infinity-specs-table td {
            padding: 10px 12px; /* Adjusted padding */
            border-bottom: 1px solid #f0f0f0;
            text-align: left;
        }
        .infinity-specs-table th {
            background: #f1f6ff; /* Simpler background */
            font-weight: 600;
            color: #223777;
            border-bottom: 2px solid #3a5baf;
        }
        .infinity-specs-table th i { margin-right: 5px;
        }
        .infinity-specs-table tr:last-child td { border-bottom: none;
        }
        .infinity-specs-table tr:hover { background-color: #f9fcff;
        }
        
        .infinity-tech-feature {
            background: #f1f6ff; /* Simpler background */
            padding: 15px; /* Adjusted padding */
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #3a5baf; /* Accent color */
            transition: border-left-width 0.3s ease, transform 0.3s ease;
        }
        .infinity-tech-feature:hover { border-left-width: 6px; transform: translateX(3px);
        }
        .infinity-tech-feature h3 {
            font-size: 16px;
            margin: 0 0 6px 0;
            color: #223777;
            font-weight: 600;
        }
        .infinity-tech-feature h3 i { margin-right: 6px;
            opacity: 0.7;}
        .infinity-tech-feature p { font-size: 14px; color: #555; margin: 0; line-height: 1.4;
        }
        
        .infinity-case-study {
            padding: 20px;
            background: #f8f9fa; /* Light background */
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
        }
        .infinity-case-study h3 { color: #223777; font-size: 17px; margin: 0 0 10px 0;
            font-weight: 600; }
        .infinity-case-study h3 i { margin-right: 6px;
        }
        .infinity-case-study p { font-size: 14px; color: #555; margin: 0 0 8px 0;
            line-height: 1.4; }
        .infinity-case-result {
            margin-top: 12px;
            padding: 12px;
            background: #e8f1ff; border-radius: 6px;
            font-weight: 500; color: #223777;
            border-left: 3px solid #3a5baf; font-size: 13px;
        }
        .infinity-case-result i { margin-right: 5px;
        }
        
        .infinity-faq-item {
            margin-bottom: 12px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 5px rgba(0,0,0,0.07);
            background-color: white;
        }
        .infinity-faq-question {
            font-weight: 500;
            color: #223777;
            cursor: pointer; display: flex;
            justify-content: space-between; align-items: center;
            padding: 15px 18px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee; /* Separator when closed */
            transition: background-color 0.3s ease;
            font-size: 15px;
        }
        .infinity-faq-question.active, .infinity-faq-question:hover { background-color: #f1f6ff;
        }
        .infinity-faq-question i.fa-solid:first-child { margin-right: 8px;
        } /* Icon for question text */
        .infinity-faq-question i.infinity-faq-icon { transition: transform 0.3s ease;
            font-size: 14px; } /* Toggle icon */
        .infinity-faq-question.active i.infinity-faq-icon { transform: rotate(45deg);
        }
        .infinity-faq-answer {
            padding: 15px 18px;
            background-color: white;
            display: none; line-height: 1.5; color: #555; font-size: 14px;
        }
        .infinity-faq-answer.active { display: block;
        }
        
        .infinity-tag {
            display: inline-block;
            padding: 5px 12px; /* Adjusted padding */
            background: #e8f1ff;
            border-radius: 15px;
            color: #223777; font-size: 12px; /* Smaller font */
            margin-right: 6px;
            margin-bottom: 6px;
            border: 1px solid #d0e0ff; font-weight: 500;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        }
        .infinity-tag i { margin-right: 4px;
        }
        .infinity-tag:hover { background: #3a5baf; color: white; transform: translateY(-1px);
        }
        
        .infinity-btn {
            display: block; /* Changed from inline-block to make each button take full width */
            width: 100%;   /* Make button take full width of its container */
            padding: 12px 15px; 
            color: white !important;
            border-radius: 6px; text-decoration: none; text-align: center; /* text-align: center is for text inside button */
            font-weight: 500; 
            margin-top: 10px; /* Vertical spacing between buttons */
            margin-bottom: 0; /* Remove bottom margin if next button has top margin */
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none; cursor: pointer; font-size: 15px; 
        }
        .infinity-button-group .infinity-btn:last-of-type { /* Ensure last button in group has bottom margin if needed */
            margin-bottom: 10px;
        }


        .infinity-btn i { margin-right: 6px; }

        .infinity-btn:hover {
            transform: translateY(-2px);
            text-decoration: none;
        }

        .infinity-btn-details { /* Original button style */
             background: linear-gradient(135deg, #223777, #3a5baf);
             box-shadow: 0 3px 10px rgba(34, 55, 119, 0.25);
        }
        .infinity-btn-details:hover {
            background: linear-gradient(135deg, #2c4695, #4a6bc8);
            box-shadow: 0 5px 15px rgba(34, 55, 119, 0.35);
        }

        .infinity-btn-rfq { /* New button style for RFQ */
            background: #FF6B35; /* Orange color for RFQ */
            box-shadow: 0 3px 10px rgba(200, 80, 50, 0.3); 
        }
        .infinity-btn-rfq:hover {
            background: #e05a2a; /* Darker orange for hover */
            box-shadow: 0 5px 15px rgba(200, 80, 50, 0.4);
        }
        .infinity-button-group { /* Wrapper for buttons */
            margin-top: 10px; /* Add some top margin to the group */
            /* display: flex; Removed */
            /* flex-wrap: wrap; Removed */
            /* gap: 8px; Removed */
            /* align-items: center; Removed */
        }
        
        .infinity-certification-icons {
            display: flex;
            justify-content: space-around; align-items: center;
            padding: 15px 0; margin-top: 15px;
            border-top: 1px solid #e8f1ff;
            gap: 10px; flex-wrap: wrap;
        }
        .infinity-certification-icons img {
            height: 35px; /* Smaller for mobile */
            max-width: 70px;
            object-fit: contain;
            filter: grayscale(20%);
            transition: filter 0.3s ease, transform 0.3s ease;
        }
        .infinity-certification-icons img:hover { filter: grayscale(0%);
            transform: scale(1.05); }
        
        .infinity-hidden-content { display: none;
        }

        /* Ensure enough space at the bottom */
        .infinity-mattress-content .infinity-container:last-child {
            padding-bottom: 20px;
        }

    