        .ta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 24px;
            background: #000;
            color: #fff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .ta-header {
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .ta-route-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 8px;
        }
        
        .ta-route-title {
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 16px 0;
            color: #fff;
        }
        
        .ta-route-metrics {
            display: flex;
            gap: 24px;
        }
        
        .ta-metric {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #aaa;
        }
        
        .ta-icon {
            fill: #888;
            width: 16px;
            height: 16px;
        }
        
        .ta-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .ta-option {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.2s ease;
        }
        
        .ta-option:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .ta-option-premium {
            background: rgba(59, 130, 246, 0.05);
            border-color: rgba(59, 130, 246, 0.2);
        }
        
        .ta-option-premium:hover {
            background: rgba(59, 130, 246, 0.08);
            border-color: rgba(59, 130, 246, 0.4);
        }
        
        .ta-option-header {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
        
        
.ta-option-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    align-self: flex-start;
}
        
        .ta-option-badge-economy {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }
        
        .ta-option-badge-premium {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
        }
        
        .ta-option-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
        }
        
        
.ta-option-title h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.ta-option-time {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* განვათავსოთ ფასი სწორ ადგილას */
.ta-option-premium .ta-option-header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ta-option-premium .ta-option-price {
    margin-left: auto;
    order: 3;
}
        
       .ta-option-price {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.ta-option-premium .ta-option-price {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}
        .ta-option-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .ta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #ccc;
        }
        
        .ta-feature-icon {
            color: #888;
            font-size: 8px;
        }
        
        .ta-option-premium .ta-feature-icon {
            color: #60a5fa;
        }
        
        .ta-recommendation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: rgba(59, 130, 246, 0.08);
            border-radius: 10px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }
        
        .ta-recommendation-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 8px 0;
            color: #fff;
        }
        
        .ta-recommendation-content p {
            font-size: 14px;
            margin: 0;
            color: #ccc;
            max-width: 500px;
        }
        
        .ta-action-button {
            padding: 12px 28px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .ta-action-button:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ta-container {
                padding: 16px;
                margin: 12px;
            }
            
            .ta-route-title {
                font-size: 20px;
            }
            
            .ta-options {
                grid-template-columns: 1fr;
            }
            
            .ta-recommendation {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            
            .ta-action-button {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .ta-route-metrics {
                flex-direction: column;
                gap: 8px;
            }
            
            .ta-route-title {
                font-size: 18px;
            }
            
            .ta-option-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
            
            .ta-option-time {
                font-size: 16px;
            }
        }