/* Shopify Store Informer Styles */
.shopify-informer,
.shopify-informer * {
    font-family: inherit !important;
}

.shopify-informer code,
.shopify-informer code * {
    font-family: 'Courier New', monospace !important;
}

.shopify-informer {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.05);
    overflow-x: visible;
    overflow-y: visible;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.shopify-informer .container {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: visible;
}

.shopify-informer .header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color, #e1e5e9);
    width: 100%;
    overflow: visible;
    position: relative;
}

.shopify-informer .header h1 {
    color: #359bf0;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
}

.shopify-informer .header p {
    color: var(--text-secondary, #6c757d);
    font-size: 1.1rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
}

.shopify-informer .input-section {
    margin-bottom: 40px;
    display: block;
    width: 100%;
    clear: both;
}

.shopify-informer .url-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.shopify-informer .input-group {
    display: block;
    width: 100%;
}

.shopify-informer .input-group input,
.shopify-informer .input-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color, #e1e5e9);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-tertiary, #f8f9fa);
    color: var(--text-primary, #2c3e50);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
    max-height: 200px;
    overflow-y: auto;
    display: block;
    margin: 0 auto;
}

.shopify-informer .input-group textarea {
    line-height: 1.5;
}

.shopify-informer .input-group input:focus,
.shopify-informer .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color, #3498db);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.shopify-informer .btn-primary {
    padding: 15px 30px;
    background: var(--accent-color, #3498db);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.shopify-informer .btn-primary:hover {
    background: var(--accent-hover, #2980b9);
    /*transform: translateY(-2px);*/
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.shopify-informer .submit-button {
    margin-top: 15px;
}

.shopify-informer .help-text {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f0f6fc; /* Lighter info blue background */
    border: 1px solid #d2e1f5;
    border-left: 4px solid #2271b1;
    border-radius: 8px;
    text-align: left;
}

.shopify-informer .help-text p {
    margin: 0 0 8px 0;
    color: #475569; /* Slate text */
    font-size: 0.875rem;
    line-height: 1.5;
}

.shopify-informer .help-text p:last-child {
    margin-bottom: 0;
}

.shopify-informer .help-text code {
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #2271b1;
    border: 1px solid #d2e1f5;
}

/* Feature Cards */
.shopify-informer .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.shopify-informer .feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.shopify-informer .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shopify-informer .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(34, 113, 177, 0.12);
    border-color: #bfdbfe;
}

.shopify-informer .feature-card:hover::before {
    opacity: 1;
}

.shopify-informer .feature-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1;
}

.shopify-informer .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.shopify-informer .feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

/* How It Works Section */
.shopify-informer .how-it-works {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #e5e7eb;
}

.shopify-informer .how-it-works h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 25px 0;
}

.shopify-informer .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 540px;
    margin: 0 auto;
}

.shopify-informer .step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.shopify-informer .step-item:hover {
    background: #f0f6fc;
    border-color: #bfdbfe;
}

.shopify-informer .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(34, 113, 177, 0.3);
}

.shopify-informer .step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.shopify-informer .step-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive: Feature Cards & Steps */
@media (max-width: 600px) {
    .shopify-informer .feature-cards {
        grid-template-columns: 1fr;
    }
}

.shopify-informer .gmc-link-section {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
}

.shopify-informer .gmc-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.shopify-informer .gmc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.shopify-informer .gmc-icon {
    font-size: 1.2rem;
}

.shopify-informer .submitted-urls-section {
    margin-bottom: 30px;
    display: block;
    width: 100%;
    clear: both;
}

.shopify-informer .submitted-urls {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.shopify-informer .submitted-urls-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.shopify-informer .urls-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
    margin: 0;
}

.shopify-informer .new-analysis-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(34, 113, 177, 0.3);
    min-height: 44px;
}

.shopify-informer .new-analysis-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.4);
}

.shopify-informer .btn-icon {
    font-size: 0.9rem;
}

.shopify-informer .urls-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shopify-informer .url-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.shopify-informer .url-item:hover {
    background: #e2e8f0;
    border-color: #cbd5e0;
}

.shopify-informer .url-item.aggregated {
    background: #e6fffa;
    border-color: #81e6d9;
    color: #234e52;
}

.shopify-informer .domain-link {
    color: #2d3748;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.shopify-informer .domain-link:hover {
    color: #2271b1;
    text-decoration: underline;
}

.shopify-informer .domain-name {
    color: #2d3748;
    font-weight: 500;
}

.shopify-informer .url-item.aggregated .domain-name {
    color: #234e52;
}

.shopify-informer .url-count {
    color: #718096;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.shopify-informer .gmc-link-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.shopify-informer .gmc-link-small:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.shopify-informer .gmc-icon-small {
    font-size: 0.7rem;
    color: white;
}

.shopify-informer .stats-section {
    margin: 40px 0;
    display: block;
    width: 100%;
    clear: both;
}

.shopify-informer .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.shopify-informer .stat-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shopify-informer .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
}

.shopify-informer .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.shopify-informer .stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.shopify-informer .stat-content {
    flex: 1;
}

.shopify-informer .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary, #111827);
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopify-informer .stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shopify-informer .results-section {
    margin-top: 40px;
    display: block;
    width: 100%;
    clear: both;
}

.shopify-informer .tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color, #e1e5e9);
    padding-bottom: 0;
}

.shopify-informer .tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary, #6c757d);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.shopify-informer .tab-btn:hover {
    color: var(--text-primary, #2c3e50);
    background: var(--bg-tertiary, #f8f9fa);
}

.shopify-informer .tab-btn.active {
    color: var(--accent-color, #3498db);
    border-bottom-color: var(--accent-color, #3498db);
    background: var(--bg-tertiary, #f8f9fa);
}

.shopify-informer .tab-content {
    position: relative;
}

.shopify-informer .tab-pane {
    display: none;
}

.shopify-informer .tab-pane.active {
    display: block;
}

.shopify-informer .table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shopify-informer .data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.shopify-informer .data-table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.shopify-informer .data-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary, #2c3e50);
    border-bottom: 2px solid var(--border-color, #e1e5e9);
    white-space: nowrap;
    position: relative;
}

.shopify-informer .data-table th:hover {
    background: rgba(52, 152, 219, 0.05);
}

.shopify-informer .sort-indicator {
    margin-left: 8px;
    font-size: 0.8em;
    color: var(--text-secondary, #6c757d);
    transition: color 0.3s ease;
}

.shopify-informer .data-table th.sort-asc .sort-indicator,
.shopify-informer .data-table th.sort-desc .sort-indicator {
    color: var(--accent-color, #3498db);
}

.shopify-informer .data-table td {
    padding: 5px;
    border-bottom: 1px solid var(--border-color, #e1e5e9);
    color: var(--text-primary, #2c3e50);
    vertical-align: top;
}

.shopify-informer .data-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    background: white;
}

.shopify-informer .data-table tbody tr:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #2271b1;
}

.shopify-informer .title-link {
    color: var(--accent-color, #3498db);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.shopify-informer .title-link:hover {
    color: var(--accent-hover, #2980b9);
    text-decoration: underline;
}

.shopify-informer .page-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shopify-informer .page-type.products {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-color, #3498db);
}

.shopify-informer .page-type.collections {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color, #27ae60);
}

.shopify-informer .page-type.pages {
    background: rgba(149, 165, 166, 0.1);
    color: var(--secondary-color, #95a5a6);
}

.shopify-informer .page-type.store {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-color, #3498db);
}

.shopify-informer .page-type.error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color, #e74c3c);
}

.shopify-informer .status-success {
    color: var(--success-color, #27ae60);
    font-weight: 600;
}

.shopify-informer .status-error {
    color: var(--danger-color, #e74c3c);
    font-weight: 600;
}

.shopify-informer .multiple-urls-results {
    margin-top: 40px;
}

.shopify-informer .multiple-urls-results h2 {
    color: var(--text-primary, #111827);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopify-informer .error-message {
    text-align: center;
    color: var(--danger-color, #e74c3c);
    font-style: italic;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shopify-informer .container {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .shopify-informer .header {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .shopify-informer .header h1 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .shopify-informer .header p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .shopify-informer .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .shopify-informer .input-group input,
    .shopify-informer .input-group textarea,
    .shopify-informer .btn-primary {
        width: 85%;
    }
    
    .shopify-informer .tabs {
        flex-wrap: wrap;
        gap: 3px;
    }
    
    .shopify-informer .tab-btn {
        flex: 1;
        min-width: 80px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .shopify-informer .data-table {
        font-size: 0.85rem;
    }
    
    .shopify-informer .data-table th,
    .shopify-informer .data-table td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .shopify-informer .container {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .shopify-informer .header {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .shopify-informer .header h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.2;
    }
    
    .shopify-informer .header p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        font-size: 1rem;
    }
    
    .shopify-informer .data-table th,
    .shopify-informer .data-table td {
        padding: 6px 4px;
        font-size: 0.8rem;
    }
    
    .shopify-informer .page-type {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Specific Item Styles */
.shopify-informer .specific-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.shopify-informer .item-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 3px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.shopify-informer .item-header h2 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.shopify-informer .item-type {
    display: inline-block;
    color: #2271b1;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 6px 16px;
    background: rgba(34, 113, 177, 0.1);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.shopify-informer .view-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 20px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 113, 177, 0.35);
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.shopify-informer .view-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 113, 177, 0.5);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #135e96 0%, #2271b1 100%);
}

.shopify-informer .item-details {
    margin-top: 20px;
}

.shopify-informer .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.shopify-informer .detail-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.shopify-informer .detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #2271b1;
}

.shopify-informer .detail-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(34, 113, 177, 0.3));
}

.shopify-informer .detail-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.shopify-informer .detail-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #718096;
    white-space: nowrap;
}

.shopify-informer .detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    word-wrap: break-word;
}

.shopify-informer .content-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.shopify-informer .content-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
}

.shopify-informer .content-body {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    line-height: 1.8;
    color: #2d3748;
    font-size: 1rem;
}

.shopify-informer .content-body h1,
.shopify-informer .content-body h2,
.shopify-informer .content-body h3 {
    margin-top: 0;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
}

.shopify-informer .content-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.shopify-informer .content-body p:last-child {
    margin-bottom: 0;
}

.shopify-informer .content-body strong {
    font-weight: 700;
    color: #1a202c;
}

/* Backward compatibility - keep old detail-row styles */
.shopify-informer .detail-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.shopify-informer .detail-row:last-child {
    border-bottom: none;
}

.shopify-informer .detail-row.full-width {
    flex-direction: column;
    gap: 10px;
}

.shopify-informer .detail-row .label {
    font-weight: 600;
    color: #4a5568;
    min-width: 160px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.shopify-informer .detail-row .value {
    color: #2d3748;
    font-size: 0.95rem;
    flex: 1;
    word-wrap: break-word;
    line-height: 1.5;
}

/* Responsive styles for new card design */
@media (max-width: 768px) {
    .shopify-informer .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .shopify-informer .item-header h2 {
        font-size: 1.5rem;
    }
    
    .shopify-informer .specific-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .shopify-informer .details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .shopify-informer .detail-card {
        padding: 15px;
    }
    
    .shopify-informer .item-header h2 {
        font-size: 1.5rem;
    }
    
    .shopify-informer .specific-item {
        padding: 20px;
    }
}

/* Spinner Animation */
@keyframes spin-informer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spinner-small {
    animation: spin-informer 1s linear infinite;
    display: inline-block;
}

/* Export Lead Generation Modal - Colors aligned to sample.css */
.shopify-export-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* matching backdrop from sample.css modal-overlay */
    backdrop-filter: blur(8px); /* matching backdrop blur from sample.css */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-export-modal.active {
    opacity: 1;
    visibility: visible;
}
.shopify-export-modal-content {
    background: #ffffff; /* --pm-card-bg */
    border: 1px solid #e5e7eb; /* --pm-card-border */
    border-radius: 18px; /* --pm-radius-lg */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02); /* --pm-shadow-lg */
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shopify-export-modal.active .shopify-export-modal-content {
    transform: translateY(0);
}
/* Glowing Top Border Effect matching sample.css card layout */
.shopify-export-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%); /* --pm-accent-gradient */
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    z-index: 10;
}
.shopify-export-modal-header {
    margin-bottom: 20px;
    position: relative;
}
.shopify-export-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827; /* --pm-text-primary */
    margin: 0;
}
.shopify-export-modal-subtitle {
    font-size: 0.9rem;
    color: #6b7280; /* --pm-text-secondary */
    margin-top: 5px;
    margin-bottom: 0;
}
.shopify-export-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #9ca3af; /* --pm-text-muted */
    transition: color 0.2s;
    line-height: 1;
    padding: 0;
}
.shopify-export-modal-close:hover {
    color: #111827; /* --pm-text-primary */
}
.shopify-export-form-group {
    margin-bottom: 15px;
    text-align: left;
}
.shopify-export-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280; /* --pm-text-secondary */
    margin-bottom: 6px;
}
.shopify-export-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #cbd5e1; /* --pm-glass-border */
    border-radius: 8px; /* --pm-radius-sm */
    font-size: 0.95rem;
    color: #111827; /* --pm-text-primary */
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.shopify-export-form-input:focus {
    border-color: #2271b1; /* --pm-accent-primary */
}
.shopify-export-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
}
.shopify-export-btn-cancel {
    background: #f1f5f9; /* --pm-glass-hover */
    color: #6b7280; /* --pm-text-secondary */
    border: none;
    padding: 10px 20px;
    border-radius: 8px; /* --pm-radius-sm */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.shopify-export-btn-cancel:hover {
    background: #e5e7eb; /* --pm-card-border */
}
.shopify-export-btn-submit {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%); /* --pm-accent-gradient */
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px; /* --pm-radius-sm */
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shopify-export-btn-submit:hover {
    opacity: 0.9;
}
.shopify-export-error {
    color: #ef4444; /* --pm-danger */
    font-size: 0.85rem;
    margin-top: 10px;
    display: none;
    text-align: left;
}