        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a3a8f 0%, #2a7f40 100%);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 75px;
            width: auto;
        }
        
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .desktop-nav a:hover {
            color: #ffd700;
        }
        
        /* Directory Container */
        .directory-container {
            padding: 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .directory-container h1 {
            text-align: center;
            color: #2a7f40;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }
        
        /* Search and Filter Styles */
        .browse-controls {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        .search-box input {
            width: 100%;
            padding: 12px 12px 12px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: #2a7f40;
        }
        
        .filter-panel {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .filter-panel h3 {
            margin-bottom: 20px;
            color: #1a3a8f;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        .filter-group select {
            width: 100%;
            padding: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            background: white;
        }
        
        .filter-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background: #2a7f40;
            color: white;
        }
        
        .btn-primary:hover {
            background: #1e6a34;
            transform: translateY(-2px);
        }
        
        /* Shop Grid Styles */
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .shop-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }
        
        .shop-card.paid-shop {
            border-color: #e3e3ff;
        }
        
        .shop-card.free-shop {
            border-color: #e8f5e9;
        }
        
        .shop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .shop-image {
            width: 100%;
            height: 120px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }
        
        .shop-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .shop-info h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .shop-location {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .shop-category {
            display: inline-block;
            background: #e9ecef;
            color: #495057;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            margin-bottom: 10px;
        }
        
        .view-shop-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #1a3a8f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            margin-top: 15px;
            transition: all 0.3s;
            border: 2px solid #1a3a8f;
        }
        
        .view-shop-btn:hover {
            background: white;
            color: #1a3a8f;
        }
        
        /* Additional styles for free/paid sections */
        .shop-type-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            margin-left: 8px;
        }
        
        .badge-paid {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .badge-free {
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            color: white;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .shop-count {
            font-size: 14px;
            color: #666;
            background: #f5f5f5;
            padding: 4px 10px;
            border-radius: 15px;
        }
        
        .shop-features {
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }
        
        .feature-item {
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 4px;
        }
        
        .feature-item i {
            margin-right: 3px;
        }
        
        .premium-feature {
            color: #ff9800;
        }
        
        .basic-feature {
            color: #4CAF50;
        }
        
        .section-subtitle {
            color: #666;
            margin-top: 5px;
            font-size: 14px;
        }
        
        .shop-url-preview {
            font-size: 12px;
            color: #4CAF50;
            background: #f0f9f0;
            padding: 4px 8px;
            border-radius: 4px;
            margin-top: 5px;
            display: inline-block;
        }
        
        .price-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255,255,255,0.9);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }
        
        .price-paid {
            color: #764ba2;
            border: 1px solid #764ba2;
        }
        
        .price-free {
            color: #2E7D32;
            border: 1px solid #2E7D32;
        }
        
        .shop-type-tabs {
            margin: 20px 0;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
        }
        
        .tabs {
            display: flex;
            gap: 10px;
        }
        
        .tab-btn {
            padding: 8px 20px;
            border: none;
            background: #e9ecef;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .tab-btn.active {
            background: #0d6efd;
            color: white;
        }
        
        .tab-btn:hover:not(.active) {
            background: #dee2e6;
        }
        
        .product-price {
            color: #198754;
            font-weight: bold;
            font-size: 16px;
            margin: 5px 0;
        }
        
        /* Improved Product Grid Styles */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .product-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
            border-color: #2a7f40;
        }
        
        .product-image-container {
            width: 100%;
            height: 180px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }
        
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-width: 100%;
            max-height: 180px;
            padding: 10px;
        }
        
        .product-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 8px;
        }
        
        .product-img-placeholder i {
            font-size: 48px;
            color: #6c757d;
            opacity: 0.5;
        }
        
        .product-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .product-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 10px 0;
            line-height: 1.4;
            max-height: 2.8em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-price {
            color: #28a745;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 5px 0 10px 0;
        }
        
        .shop-id {
            font-size: 0.9rem;
            color: #6c757d;
            margin: 8px 0 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-wrap: wrap;
        }
        
        .view-product-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #2a7f40;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid #2a7f40;
            margin-top: 5px;
            width: 100%;
            text-align: center;
        }
        
        .view-product-btn:hover {
            background: white;
            color: #2a7f40;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Directory Section Styles */
        .directory-section {
            margin-bottom: 40px;
            padding: 25px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .directory-title {
            color: #1a3a8f;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #666;
        }
        
        .no-results h3 {
            margin-bottom: 10px;
            color: #333;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a3a8f 0%, #2a7f40 100%);
            padding: 60px 20px;
            color: white;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .btn-gold {
            background: #ffd700;
            color: #333;
            border: 2px solid #ffd700;
        }
        
        .btn-gold:hover {
            background: transparent;
            color: #ffd700;
        }
        
        .btn-orange {
            background: #ff9800;
            color: white;
            border: 2px solid #ff9800;
        }
        
        .btn-orange:hover {
            background: transparent;
            color: #ff9800;
        }
        
        /* Footer Styles */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #ffd700;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #2a7f40;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* Google Translate */
        #google_translate_element {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 1000;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .desktop-nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .directory-container {
                padding: 20px 15px;
            }
            
            .directory-container h1 {
                font-size: 2rem;
            }
            
            .shop-grid,
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .tabs {
                flex-wrap: wrap;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .shop-grid,
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .directory-title {
                font-size: 1.5rem;
            }
        }
