/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 290:4 Unexpected "<"

**/
<style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #333;
        }
        
        /* Shopify Product Page Widget */
        .installer-widget {
            background: #fff;
            border: 2px solid #e8f5e9;
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .installer-widget:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            border-color: #c8e6c9;
        }
        
        .widget-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .widget-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .widget-title i {
            color: #27ae60;
            font-size: 22px;
        }
        
        .installer-count {
            background: #e8f5e9;
            color: #27ae60;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #27ae60;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        #installer-map {
            height: 350px;
            border-radius: 8px;
            margin-bottom: 15px;
            position: relative;
            background: #f0f0f0;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: #666;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            pointer-events: none;
            z-index: 1000;
        }
        
        .installer-list {
            max-height: 400px;
            overflow-y: auto;
            margin-bottom: 15px;
        }
        
        .installer-card {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            background: #fafafa;
        }
        
        .installer-card:hover {
            background: #f5f5f5;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transform: translateY(-1px);
        }
        
        .installer-card.selected {
            border-color: #3498db;
            background: #e3f2fd;
        }
        
        .installer-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .installer-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .installer-detail i {
            color: #3498db;
            width: 16px;
        }
        
        .installer-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .action-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .btn-call {
            background: #27ae60;
            color: white;
        }
        
        .btn-call:hover {
            background: #229954;
        }
        
        .btn-directions {
            background: white;
            color: #3498db;
            border: 1px solid #3498db;
        }
        
        .btn-directions:hover {
            background: #3498db;
            color: white;
        }
        
        .disclaimer {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 12px;
            font-size: 12px;
            color: #856404;
            line-height: 1.4;
            display: flex;
            gap: 10px;
        }
        
        .disclaimer i {
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .error-message {
            background: #fee;
            border: 1px solid #fcc;
            color: #c33;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            display: none;
            margin-bottom: 15px;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #999;
        }
        
        .no-results i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            #installer-map {
                height: 250px;
            }
            
            .installer-actions {
                flex-direction: column;
            }
            
            .widget-header {
                flex-direction: column;
                align-items: start;
                gap: 10px;
            }
        }
        
        /* Popup Styles */
        .leaflet-popup-content {
            margin: 10px;
            min-width: 200px;
        }
        
        .popup-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .popup-detail {
            font-size: 13px;
            color: #666;
            margin-bottom: 3px;
        }
        
        .popup-actions {
            margin-top: 10px;
            display: flex;
            gap: 5px;
        }
        
        .popup-btn {
            flex: 1;
            padding: 5px 10px;
            font-size: 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            background: #3498db;
            color: white;
            text-align: center;
        }
        
        .popup-btn:hover {
            background: #2980b9;
        }
    </style>