
        :root {
            --kimone-primary: #2c5c34;
            --kimone-secondary: #4a8c5a;
            --kimone-accent: #7fb069;
            --kimone-light: #f8f9fa;
            --kimone-dark: #1a1a1a;
            --kimone-gray: #e9ecef;
            --kimone-white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2c5c34 0%, #4a8c5a 100%);
            --gradient-subtle: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: var(--gradient-subtle);
            color: var(--kimone-dark);
            line-height: 1.6;
            font-family: 'Roboto', sans-serif;
            padding: 0;
        }
        
        .kimone-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--kimone-white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }
        
        /* Header Styles */
        .kimone-header {
            background: var(--gradient-primary);
            padding: 25px 40px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            letter-spacing: 1.2px;
        }
        
        .product-header {
            padding: 30px 40px 20px;
            border-bottom: 1px solid var(--kimone-gray);
        }
        
        .product-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--kimone-primary);
            margin-bottom: 10px;
        }
        
        .product-subtitle {
            font-size: 18px;
            color: var(--kimone-secondary);
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        /* Main Content */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }
        
        .content-left {
            flex: 1;
            min-width: 300px;
            padding: 30px 40px;
            border-right: 1px solid var(--kimone-gray);
        }
        
        .content-right {
            flex: 1;
            min-width: 300px;
            padding: 30px 40px;
            background: #fcfdfc;
        }
        
        /* Section Styles */
        .section {
            margin-bottom: 35px;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            color: var(--kimone-primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--kimone-accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            color: var(--kimone-secondary);
        }
        
        /* Table Styles */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }
        
        .specs-table tr {
            transition: all 0.2s ease;
        }
        
        .specs-table tr:hover {
            background-color: rgba(74, 140, 90, 0.05);
        }
        
        .specs-table td {
            padding: 15px;
            border: 1px solid var(--kimone-gray);
        }
        
        .spec-name {
            font-weight: 600;
            color: var(--kimone-primary);
            width: 35%;
            background-color: #f9faf9;
        }
        
        /* Feature List */
        .features-list {
            list-style: none;
        }
        
        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--kimone-gray);
            display: flex;
            align-items: flex-start;
            transition: all 0.2s ease;
        }
        
        .features-list li:hover {
            background-color: #f9faf9;
            padding-left: 10px;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: "•";
            color: var(--kimone-secondary);
            font-weight: bold;
            font-size: 24px;
            margin-right: 15px;
            line-height: 1;
        }
        
        .feature-text {
            font-size: 16px;
            line-height: 1.5;
        }
        
        /* Image Styles */
        .product-image {
            text-align: center;
            margin: 25px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }
        
        .product-image img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .product-image:hover img {
            transform: scale(1.03);
        }
        
        /* Badge Styles */
        .kimone-badge {
            display: inline-block;
            background: rgba(74, 140, 90, 0.1);
            color: var(--kimone-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin: 10px 0;
            letter-spacing: 0.5px;
        }
        
        /* Footer Styles */
        .kimone-footer {
            background: var(--gradient-primary);
            color: white;
            padding: 25px 40px;
            text-align: center;
            font-size: 14px;
        }
        
        .disclaimer {
            background: rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 13px;
            line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .main-content {
                flex-direction: column;
            }
            
            .content-left {
                border-right: none;
                border-bottom: 1px solid var(--kimone-gray);
            }
            
            .kimone-header {
                padding: 20px;
            }
            
            .product-header {
                padding: 20px;
            }
            
            .content-left, .content-right {
                padding: 20px;
            }
            
            .product-title {
                font-size: 26px;
            }
        }
        
        @media (max-width: 600px) {
            .spec-name {
                width: 40%;
            }
            
            .kimone-container {
                border-radius: 0;
            }
            
            body {
                padding: 0;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .section:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .section:nth-child(3) {
            animation-delay: 0.2s;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--kimone-secondary);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--kimone-primary);
        }
    