 .igvp-instagram-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 10;
        }
        
        .igvp-instagram-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        
        .igvp-instagram-icon i {
            font-size: 24px;
            color: white;
        }
        
        .product-details {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .product-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .product-description {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .product-highlights {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .highlight {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .highlight i {
            color: #dc2743;
            margin-right: 10px;
        }
        
        .highlight:last-child {
            margin-bottom: 0;
        }
        
        /* Popup Styles */
        .igvp-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999999999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .igvp-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .igvp-popup {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .igvp-popup-overlay.active .igvp-popup {
            transform: scale(1);
        }
        
        .igvp-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #f8f8f8;
            border-bottom: 1px solid #eee;
        }
        
        .igvp-popup-title {
            font-weight: 600;
            color: #333;
            font-size: 18px;
        }
        
        .igvp-close-btn {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #777;
            transition: color 0.2s;
        }
        
        .igvp-close-btn:hover {
            color: #dc2743;
        }
        
        .igvp-video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            width: 100%;
            height: 60vh;
            /*aspect-ratio: 9/14;*/
        }
        .igvp-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .igvp-popup-content {
            padding: 20px;
            text-align: left;
        }
        
        .igvp-video-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .igvp-video-description {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }
        
        .igvp-popup-footer {
            padding: 15px 20px;
            background: #f8f8f8;
            border-top: 1px solid #eee;
            text-align: right;
        }
        
        .igvp-view-instagram-btn {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        .igvp-view-instagram-btn:hover {
            opacity: 0.9;
        }