
   

    /* Main Layout Grid */
    .main-layout-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        align-items: start;
    }

    /* Left Content Area */
    .left-content {
        grid-column: 1;
    }

    /* Right Sidebar Area */
    .right-sidebar {
        grid-column: 2;
        margin-top: 0;
    }

    /* Main grid container */
    .items-grid-container {
        width: 100%;
    }

    /* Fixed 2-column grid */
    .items-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        margin: 0;
    }

    /* Google Ad Container */
    .google-ad-container {
        grid-column: 1 / -1;
        margin: 20px 0;
        padding: 15px;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        text-align: center;
    }

    .ad-label {
        font-size: 12px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Mobile: 1 column */
    @media (max-width: 768px) {
        .main-layout-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .left-content,
        .right-sidebar {
            grid-column: 1;
        }
        
        .items-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .industry-hero {
            padding: 2rem 1rem;
            border-radius: 15px;
            margin: 0 0 1.5rem 0;
        }

        .hero-stats {
            gap: 1rem;
        }

        .hero-stat-number {
            font-size: 1.5rem;
        }

        .google-ad-container {
            margin: 15px 0;
        }
    }

    /* Professional Product Card */
    .product-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .product-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
        border-color: #3b82f6;
    }

    /* Product Image Section - FIXED */
    .product-image-section {
        position: relative;
        height: 160px;
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-bottom: 1px solid #e5e7eb;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .product-card:hover .product-image {
        transform: scale(1.05);
    }

    .database-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    }

    .sale-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, #ef4444, #dc2626);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    }

    .product-card-header {
        padding: 20px 20px 15px;
        background: #ffffff;
    }

    .product-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        color: #1f2937;
        margin: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .product-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .product-title a:hover {
        color: #3b82f6;
    }

    .product-card-body {
        padding: 0 20px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .stat-item {
        text-align: center;
        padding: 12px 8px;
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
    }

    .stat-item:hover {
        background: #f1f5f9;
        border-color: #3b82f6;
    }

    .stat-value {
        font-size: 16px;
        font-weight: 800;
        color: #1e293b;
        display: block;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 10px;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        display: block;
        margin-top: 4px;
    }

    /* Location */
    .product-location {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 15px;
        padding: 10px 12px;
        background: #f8fafc;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .location-flag {
        font-size: 14px;
        color: #3b82f6;
    }

    .location-text {
        font-size: 14px;
        font-weight: 600;
        color: #475569;
    }

    /* Pricing Section */
    .pricing-section {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        border-radius: 12px;
        padding: 18px;
        margin-bottom: 20px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .pricing-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) rotate(45deg); }
        100% { transform: translateX(100%) rotate(45deg); }
    }

    .price-main {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .price-current {
        font-size: 20px;
        font-weight: 800;
        color: #10b981;
    }

    .price-original {
        font-size: 14px;
        color: #94a3b8;
        text-decoration: line-through;
    }

    .discount-badge {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 800;
        margin-left: auto;
    }

    .price-breakdown {
        font-size: 12px;
        color: #cbd5e1;
        line-height: 1.5;
        font-weight: 500;
    }

    /* Action Buttons */
    .action-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: auto;
    }

    .btn-download, .btn-details {
        padding: 12px 16px;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        position: relative;
        overflow: hidden;
    }

    .btn-download {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .btn-download:hover {
        background: linear-gradient(135deg, #059669, #047857);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .btn-details {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .btn-details:hover {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    /* Sidebar Styles */
    .sidebar-card {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .sidebar-card:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .sidebar-header {
        padding: 18px 20px;
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border-bottom: 1px solid #e5e7eb;
        font-weight: 700;
        color: #1f2937;
        font-size: 16px;
    }

    .sidebar-body {
        padding: 20px;
    }

    .industry-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .industry-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.2s ease;
    }

    .industry-list li:hover {
        background: #f8fafc;
        padding-left: 8px;
        margin: 0 -8px;
        border-radius: 8px;
    }

    .industry-list li:last-child {
        border-bottom: none;
    }

    .industry-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #4b5563;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .industry-list a:hover {
        color: #3b82f6;
    }

    .item-count {
        background: #3b82f6;
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 700;
        min-width: 40px;
        text-align: center;
    }

    /* CTA Section */
    .cta-card {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        color: white;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .cta-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-card .sidebar-body {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .cta-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cta-text {
        font-size: 14px;
        color: #cbd5e1;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .btn-cta {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border: none;
        padding: 16px 24px;
        border-radius: 12px;
        font-weight: 700;
        width: 100%;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-cta:hover {
        background: linear-gradient(135deg, #d97706, #b45309);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    }

    /* Filter Section */
    .filter-section {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .sticky-sidebar {
        position: sticky;
        top: 20px;
    }

    /* Results Header */
    .results-header {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 25px;
        border: 1px solid #e2e8f0;
    }

    /* Trust Badges */
    .trust-badges {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #e2e8f0;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    .trust-badge i {
        color: #fbbf24;
        font-size: 16px;
    }

    /* Currency Styles */
    .currency-inr {
        font-family: Arial, sans-serif;
    }

    .currency-usd {
        font-family: Arial, sans-serif;
    }

    /* Hero Hook Styles */
    .hero-hook {
        font-size: 1.1rem;
        color: #f8fafc;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-highlight {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }
    
    .subscription-hook {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.subscription-hook::before {
    content: '🔥 BEST VALUE';
    position: absolute;
    top: -10px;
    right: -30px;
    background: #dc2626;
    color: white;
    padding: 5px 30px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: center;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.subscription-benefits .benefit-item {
    padding: 2px 0;
}

.pricing-highlight {
    border: 1px solid #f59e0b;
}

.custom-data-hook {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rounded-8 {
    border-radius: 8px;
}

.btn-outline-warning {
    border-color: #f59e0b;
    color: #f59e0b;
}

.btn-outline-warning:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #1f2937;
}

.btn-dark {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-item {
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(30, 41, 59, 0.8) !important;
    transform: translateY(-1px);
}



.search-suggestions {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.search-suggestions .list-group-item {
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-suggestions .list-group-item:hover {
    background-color: #f8fafc;
    color: #3b82f6;
}

.search-suggestions .list-group-item:active {
    background-color: #eff6ff;
}

.voice-search-btn, #stopVoiceSearchBtn {
    border-color: #d1d5db;
    transition: all 0.3s ease;
}

.voice-search-btn:hover, #stopVoiceSearchBtn:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.voice-search-btn:active {
    background-color: #e5e7eb;
}

/* Pulse animation for listening state */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.listening {
    animation: pulse 2s infinite;
    background-color: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-suggestions {
        position: fixed !important;
        top: auto !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        max-height: 50vh;
    }
    
    .voice-search-btn, #stopVoiceSearchBtn {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Custom scrollbar for suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 0 0 8px 0;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}




