/* Combined CSS from both files */
        
        /* Styles from pro2promo.html */
        .digi-micro-container {
            background-color: #f8f9fa;
        }
        
        .digi-micro-breadcrumb {
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .digi-micro-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #0c63a8;
            margin-top: 15px;
        }
        
        .digi-micro-subtitle {
            font-size: 1.2rem;
            color: #666;
        }
        
        .digi-micro-thumbnail {
            cursor: pointer;
            transition: transform 0.2s;
            border: 2px solid transparent;
        }
        
        .digi-micro-thumbnail:hover {
            transform: scale(1.05);
            border-color: #0c63a8;
        }
        
        .digi-micro-highlights {
            /* background-color: white; */
            padding: 20px;
            border-radius: 10px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
        }
        
        .digi-micro-feature-list {
            list-style: none;
            padding: 0;
        }
        
        .digi-micro-feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .digi-micro-feature-list li:last-child {
            border-bottom: none;
        }
        
        .digi-micro-video {
            /* background-color: white; */
            padding: 20px;
            border-radius: 10px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
        }
        
        .digi-micro-description {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .digi-micro-intro {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #444;
        }
        
        .digi-micro-full-description p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .digi-micro-specs table {
            background-color: white;
        }
        
        .digi-micro-specs th {
            width: 30%;
            background-color: #f8f9fa;
        }
        
        .digi-micro-resources .card {
            border: none;
            border-radius: 10px;
        }
        
        .digi-micro-download {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .digi-micro-download:last-child {
            border-bottom: none;
        }
        
        .digi-micro-related {
            border-top: 1px solid #eee;
            padding-top: 30px;
        }
        
        .digi-micro-related .card {
            transition: transform 0.2s;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .digi-micro-related .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Styles from pro1.html */
        .digi-micro-hero {
            background-color: #d8eeff;
            border-radius: 0;
            overflow: hidden;
            padding: 60px 0;
            margin-left: calc(-51vw + 50%);
            margin-right: calc(-49vw + 50%);
            width: 100vw;
            position: relative;
        }
        
        .digi-micro-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .digi-micro-specs-box {
            /* background-color: #f8f9fa; */
            border-radius: 12px;
        }
        
        .digi-micro-specs-box th {
            background-color: #0c63a8;
            color: white;
        }
        
        .digi-micro-feature-icon {
            width: 50px;
            height: 50px;
            background-color: #0c63a8;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .digi-micro-video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .digi-micro-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .digi-micro-download-btn {
            background-color: #0c63a8;
            color: white;
            border-radius: 8px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .digi-micro-download-btn:hover {
            background-color: #0a4d87;
            color: white;
        }
        
        /* Image Gallery Styles */
        .digi-micro-main-image {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 400px;
            background: #f0f0f0;
        }
        
        .digi-micro-main-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.5s ease;
            opacity: 0;
            background-color: #d8eeff;

        }
        
        .digi-micro-main-image img.active {
            opacity: 1;
        }
        
        .thumbnail-container {
            margin-top: 15px;
        }
        
        .digi-micro-thumbnail {
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .digi-micro-thumbnail:hover, 
        .digi-micro-thumbnail.active {
            opacity: 1;
            border: 2px solid #0c63a8;
        }
        
        @media (max-width: 768px) {
            .digi-micro-title {
                font-size: 2rem;
            }
            
            .digi-micro-subtitle {
                font-size: 1rem;
            }
            
            .digi-micro-main-image {
                height: 300px;
            }
            
            .digi-micro-hero {
                padding: 40px 0;
            }
        }
        


    .product-image-card {
        transition: transform 0.3s ease;
        cursor: pointer;
    }
    .product-image-card:hover {
        transform: translateY(-5px);
    }
    .product-image-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border: 1px solid #eee;
    }
    #modalImage {
        max-height: 70vh;
        width: auto;
    }
